diff --git a/Cargo.toml b/Cargo.toml index 8d62b7dd9d..07a958cd4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ordermap" -version = "0.2.2" +version = "0.2.3" authors = ["bluss"] documentation = "https://docs.rs/ordermap/" repository = "https://github.com/bluss/ordermap" diff --git a/README.rst b/README.rst index 1df9514922..3739142034 100644 --- a/README.rst +++ b/README.rst @@ -66,6 +66,13 @@ Where to go from here? Recent Changes -------------- +- 0.2.3 + + - Generalize ``Entry`` for now, so that it works on hashmaps with non-default + hasher. However, there's a lingering compat issue since libstd HashMap + does not parameterize its entries by the hasher (``S`` typarm). + - Special case some iterator methods like ``.nth()`` + - 0.2.2 - Disable the verbose Debug impl by default.