diff --git a/Cargo.toml b/Cargo.toml index 74f5161..ea0ca7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lazy_static" # NB: When modifying, also modify html_root_url in lib.rs -version = "1.2.0" +version = "1.3.0" authors = ["Marvin Löbel "] license = "MIT/Apache-2.0" diff --git a/README.md b/README.md index e8291c3..c913375 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Add the following dependency to your Cargo manifest... ```toml [dependencies] -lazy_static = "1.2.0" +lazy_static = "1.3.0" ``` ...and see the [docs](https://docs.rs/lazy_static) for how to use it. diff --git a/src/lib.rs b/src/lib.rs index f555da2..ac0cf8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -99,7 +99,7 @@ no guarantees can be made about them in regard to SemVer stability. */ -#![doc(html_root_url = "https://docs.rs/lazy_static/1.2.0")] +#![doc(html_root_url = "https://docs.rs/lazy_static/1.3.0")] #![no_std] #[cfg(not(feature = "spin_no_std"))] @@ -195,7 +195,7 @@ pub trait LazyStatic { /// extern crate lazy_static; /// /// lazy_static! { -/// static ref BUFFER: Vec = (0..65537).collect(); +/// static ref BUFFER: Vec = (0..255).collect(); /// } /// /// fn main() {