Skip to content

Commit 03f6291

Browse files
authored
Merge pull request #143 from KodrAus/cargo/1.3.0
Prepare for 1.3.0 release
2 parents efa9d44 + bc5588b commit 03f6291

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+1-1
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 = "1.2.0"
4+
version = "1.3.0"
55
authors = ["Marvin Löbel <[email protected]>"]
66
license = "MIT/Apache-2.0"
77

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Add the following dependency to your Cargo manifest...
3131

3232
```toml
3333
[dependencies]
34-
lazy_static = "1.2.0"
34+
lazy_static = "1.3.0"
3535
```
3636

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

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ no guarantees can be made about them in regard to SemVer stability.
9999
100100
*/
101101

102-
#![doc(html_root_url = "https://docs.rs/lazy_static/1.2.0")]
102+
#![doc(html_root_url = "https://docs.rs/lazy_static/1.3.0")]
103103
#![no_std]
104104

105105
#[cfg(not(feature = "spin_no_std"))]
@@ -195,7 +195,7 @@ pub trait LazyStatic {
195195
/// extern crate lazy_static;
196196
///
197197
/// lazy_static! {
198-
/// static ref BUFFER: Vec<u8> = (0..65537).collect();
198+
/// static ref BUFFER: Vec<u8> = (0..255).collect();
199199
/// }
200200
///
201201
/// fn main() {

0 commit comments

Comments
 (0)