diff --git a/Cargo.toml b/Cargo.toml index d3aef2ad..5823a0f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "indexmap" edition = "2018" -version = "1.5.0" +version = "1.5.1" authors = [ "bluss", "Josh Stone " diff --git a/README.rst b/README.rst index d5c82211..5fbab927 100644 --- a/README.rst +++ b/README.rst @@ -66,6 +66,18 @@ which is roughly: Recent Changes ============== +- 1.5.1 + + - Values can now be indexed by their ``usize`` position by @cuviper in PR 132_. + + - Some of the generic bounds have been relaxed to match ``std`` by @cuviper in PR 141_. + + - ``drain`` now accepts any ``R: RangeBounds`` by @cuviper in PR 142_. + +.. _132: https://github.com/bluss/indexmap/pull/132 +.. _141: https://github.com/bluss/indexmap/pull/141 +.. _142: https://github.com/bluss/indexmap/pull/142 + - 1.5.0 - **MSRV**: Rust 1.32 or later is now required.