Skip to content

Commit

Permalink
Merge pull request #143 from KodrAus/cargo/1.3.0
Browse files Browse the repository at this point in the history
Prepare for 1.3.0 release
  • Loading branch information
KodrAus committed Feb 26, 2019
2 parents efa9d44 + bc5588b commit 03f6291
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.2.0"
version = "1.3.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 @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -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"))]
Expand Down Expand Up @@ -195,7 +195,7 @@ pub trait LazyStatic {
/// extern crate lazy_static;
///
/// lazy_static! {
/// static ref BUFFER: Vec<u8> = (0..65537).collect();
/// static ref BUFFER: Vec<u8> = (0..255).collect();
/// }
///
/// fn main() {
Expand Down

0 comments on commit 03f6291

Please sign in to comment.