diff --git a/CHANGELOG.md b/CHANGELOG.md index fa8e210..5b5edd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.4.4 (August 06, 2021) + +* Fix panic in `FromIterator` impl (#102) +* Fix compatibility with older clippy versions (#104) +* Add `try_remove` method (#89) +* Implement `ExactSizeIterator` and `FusedIterator` for iterators (#92) + # 0.4.3 (April 20, 2021) * Add no_std support for Rust 1.36 and above (#71). diff --git a/Cargo.toml b/Cargo.toml index d08d573..b017ada 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ name = "slab" # - README.md # - Update CHANGELOG.md # - Create git tag -version = "0.4.3" +version = "0.4.4" authors = ["Carl Lerche "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index c832501..edbbe03 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To use `slab`, first add this to your `Cargo.toml`: ```toml [dependencies] -slab = "0.4.3" +slab = "0.4" ``` Next, add this to your crate: