Skip to content

Commit

Permalink
chore: cut the 0.5.1 release
Browse files Browse the repository at this point in the history
Update CHANGELOG.
Update README.
Cut the 0.5.1 release.
  • Loading branch information
indiv0 committed Nov 25, 2017
1 parent 71bc508 commit 8e19f50
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
<a name="0.6.0"></a>
## 0.6.0 (2017-11-25)


#### Bug Fixes

* fix soundness hole in borrow_with ([d1f46bef](https://github.com/indiv0/lazycell/commit/d1f46bef9d1397570aa9c3e87e18e0d16e6d1585))

#### Features

* add Default derives ([71bc5088](https://github.com/indiv0/lazycell/commit/71bc50880cd8e20002038197c9b890f5b76ad096))
* add LazyCell::try_borrow_with ([bffa4028](https://github.com/indiv0/lazycell/commit/bffa402896670b5c78a9ec050d82a58ee98de6fb))
* add LazyCell::borrow_mut method ([fd419dea](https://github.com/indiv0/lazycell/commit/fd419dea965ff1ad3853f26f37e8d107c6ca096c))

#### Breaking Changes

* add `T: Send` for `AtomicLazyCell` `Sync` impl ([668bb2fa](https://github.com/indiv0/lazycell/commit/668bb2fa974fd6707c4c7edad292c76a9017d74d), closes [#67](https://github.com/indiv0/lazycell/issues/67))

#### Improvements

* add `T: Send` for `AtomicLazyCell` `Sync` impl ([668bb2fa](https://github.com/indiv0/lazycell/commit/668bb2fa974fd6707c4c7edad292c76a9017d74d), closes [#67](https://github.com/indiv0/lazycell/issues/67))



<a name="v0.5.1"></a>
## v0.5.1 (2017-03-24)

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 = "0.5.1"
version = "0.6.0"
authors = ["Alex Crichton <alex@alexcrichton.com>",
"Nikita Pekin <contact@nikitapek.in>"]
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 = "0.5"
lazycell = "0.6"
```

And in your `lib.rs` or `main.rs`:
Expand Down

0 comments on commit 8e19f50

Please sign in to comment.