diff --git a/Cargo.toml b/Cargo.toml index 45981e5..855022f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "priority-queue" -version = "2.5.0" +version = "2.5.1" authors = ["Gianmarco Garrisi "] description = "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item." repository = "https://github.com/garro95/priority-queue" diff --git a/README.md b/README.md index a485350..b050bb9 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ All contribution shall be under a license compatible with the GNU LGPL version 3 ## Changes +* 2.5.1 Add equivalent trait support for flexible key lookups [#74](https://github.com/garro95/priority-queue/pull/74). Convert `with_hasher` to const function [#73](https://github.com/garro95/priority-queue/pull/73). * 2.5.0 Implement `contains`. * 2.4.1 Documentation improvements: add examples for `extract_if` * 2.4.0 Implement `extract_if`.