Skip to content

Commit

Permalink
prepare for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus authored and dtolnay committed Aug 5, 2018
1 parent 691419a commit 19b57ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "lazy_static"
# NB: When modifying, also modify html_root_url in lib.rs
version = "1.0.2"
version = "1.1.0"
authors = ["Marvin Löbel <loebel.marvin@gmail.com>"]
license = "MIT/Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -25,7 +25,7 @@ Add the following dependency to your Cargo manifest...

```toml
[dependencies]
lazy_static = "1.0"
lazy_static = "1.1.0"
```

...and see the [docs](https://docs.rs/lazy_static) for how to use it.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -103,7 +103,7 @@ no guarantees can be made about them in regard to SemVer stability.
// NOTE: see build.rs for where these cfg values are set.
#![cfg_attr(lazy_static_spin_impl, feature(const_fn))]

#![doc(html_root_url = "https://docs.rs/lazy_static/1.0.2")]
#![doc(html_root_url = "https://docs.rs/lazy_static/1.1.0")]
#![no_std]

#[cfg(lazy_static_heap_impl)]
Expand Down

0 comments on commit 19b57ec

Please sign in to comment.