Skip to content

Commit 95499eb

Browse files
author
Gianmarco Garrisi
committed
Prepare version
1 parent c09aac2 commit 95499eb

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "priority-queue"
3-
version = "2.7.0"
3+
version = "2.8.0"
44
authors = ["Gianmarco Garrisi <gianmarcogarrisi@tutanota.com>"]
55
description = "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item."
66
repository = "https://github.com/garro95/priority-queue"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ All contribution shall be under a license compatible with the GNU LGPL version 3
133133

134134
## Changes
135135

136+
* 2.8.0 Fix several bugs on iterators: [#80](https://github.com/garro95/priority-queue/issues/80), [#81](https://github.com/garro95/priority-queue/issues/81)
136137
* 2.7.0 Support `serde` feature even in `no-std` environments.
137138
* 2.6.0 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). Thanks to [liwenjieQu](https://github.com/liwenjieQu) and [AsakuraMizu](https://github.com/AsakuraMizu)
138139
* 2.5.0 Implement `contains`.

tests/priority_queue.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ mod pqueue_tests {
751751
assert_eq!(into_iter.len(), 5);
752752
assert_eq!(into_iter.next(), Some(("a", 1)));
753753
assert_eq!(into_iter.next_back(), Some(("h", 3)));
754-
754+
755755
/*
756756
As expected, this does not compile
757757
assert_eq!(pq.pop(), Some(("b", 20)));

0 commit comments

Comments
 (0)