Skip to content

Commit 857d1c7

Browse files
committed
Make the 1.0 release
1 parent 5acf245 commit 857d1c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lazy_static"
33
# NB: When modifying, also modify html_root_url in lib.rs
4-
version = "0.2.11"
4+
version = "1.0.0"
55
authors = ["Marvin Löbel <[email protected]>"]
66
license = "MIT/Apache-2.0"
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the following dependency to your Cargo manifest...
2121

2222
```toml
2323
[dependencies]
24-
lazy_static = "0.2"
24+
lazy_static = "1.0"
2525
```
2626

2727
...and see the [docs](https://docs.rs/lazy_static) for how to use it.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The `Deref` implementation uses a hidden static variable that is guarded by a at
9393
#![cfg_attr(feature="spin_no_std", feature(const_fn))]
9494
#![cfg_attr(feature="nightly", feature(unreachable))]
9595

96-
#![doc(html_root_url = "https://docs.rs/lazy_static/0.2.11")]
96+
#![doc(html_root_url = "https://docs.rs/lazy_static/1.0.0")]
9797
#![no_std]
9898

9999
#[cfg(not(feature="nightly"))]

0 commit comments

Comments
 (0)