Skip to content

Commit

Permalink
chore: cut the 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
indiv0 committed Sep 10, 2018
1 parent 2d66c6b commit a66d592
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
<a name="v1.1.0"></a>
## 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))



<a name="v1.0.0"></a>
## v1.0.0 (2018-06-06)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lazycell"
version = "1.0.0"
version = "1.1.0"
authors = ["Alex Crichton <[email protected]>",
"Nikita Pekin <[email protected]>"]
description = "A library providing a lazily filled Cell struct"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit a66d592

Please sign in to comment.