From cbc16fe524b94c4d08cdcbb0ef7ce1b56942382e Mon Sep 17 00:00:00 2001 From: Nikita Pekin Date: Wed, 19 Sep 2018 13:11:27 -0400 Subject: [PATCH] chore: cut 1.1 release Update CHANGELOG.md. Update the version to 1.2 in the README.md and in the Cargo.toml. --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f25af83..45974b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## v1.2.0 (2018-09-19) + + +#### Features + +* add `LazyCell::replace` for infallible access ([a63ffb90](https://github.com/indiv0/lazycell/commit/a63ffb9040a5e0683a9bbf9d3d5ef589f2ca8b7c)) + + + ## v1.1.0 (2018-09-10) diff --git a/Cargo.toml b/Cargo.toml index a6bc7d0..f00e280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lazycell" -version = "1.1.0" +version = "1.2.0" authors = ["Alex Crichton ", "Nikita Pekin "] description = "A library providing a lazily filled Cell struct" diff --git a/README.md b/README.md index 0bdd500..4e1dd99 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -lazycell = "1.1" +lazycell = "1.2" ``` And in your `lib.rs` or `main.rs`: