Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "priority-queue"
version = "2.5.0"
version = "2.5.1"
authors = ["Gianmarco Garrisi <[email protected]>"]
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"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down