From a66d5923e98746836c195e973bbb23da37327a80 Mon Sep 17 00:00:00 2001 From: Nikita Pekin Date: Mon, 10 Sep 2018 18:38:39 -0400 Subject: [PATCH] chore: cut the 1.0.0 release --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96806cd..f25af83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +## v1.1.0 (2018-09-10) + + +#### Documentation + +* add note regarding LazyCell::borrow_mut ([9d634d1f](https://github.com/indiv0/lazycell/commit/9d634d1fd9a21b7aa075d407bedf9fe77ba8b79f)) +* describe mutability more consistently ([b8078029](https://github.com/indiv0/lazycell/commit/b80780294611e92efddcdd33a701b3049ab5c5eb), closes [#78](https://github.com/indiv0/lazycell/issues/78)) + +#### Improvements + +* add NONE constant for an empty AtomicLazyCell ([31aff0da](https://github.com/indiv0/lazycell/commit/31aff0dacf824841c5f38ef4acf0aa71ec4c36eb), closes [#87](https://github.com/indiv0/lazycell/issues/87)) +* add `LazyCell::borrow_mut_with` and `LazyCell::try_borrow_mut_with` ([fdc6d268](https://github.com/indiv0/lazycell/commit/fdc6d268f0e9a6668768302f45fe2bb4aa9a7c34), closes [#79](https://github.com/indiv0/lazycell/issues/79), [#80](https://github.com/indiv0/lazycell/issues/80)) + + + ## v1.0.0 (2018-06-06) diff --git a/Cargo.toml b/Cargo.toml index 85699e4..a6bc7d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazycell" -version = "1.0.0" +version = "1.1.0" authors = ["Alex Crichton ", "Nikita Pekin "] description = "A library providing a lazily filled Cell struct" diff --git a/README.md b/README.md index 781f65d..0bdd500 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -lazycell = "1.0" +lazycell = "1.1" ``` And in your `lib.rs` or `main.rs`: