Skip to content

Commit 006dc69

Browse files
committed
prepare for 0.9.1 release
1 parent 039c9b5 commit 006dc69

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1+
## [0.9.1]
2+
- Bugfix: `LruCache::contains_key` should take `&self` and not move the entry as
3+
though it is accessed.
4+
- Add basic `CursorMut` API to `HashMap` (thanks @olebedev!)
5+
- Bump `hashbrown` dependency to depend on a version of `hashbrown` past a
6+
downstream `zerocopy` dependency.
7+
- Don't depend on default features of `hashbrown`, removes `allocator-api2`
8+
dependency.
9+
110
## [0.9.0]
211
- API incompatible change: Don't panic in `reserve` and `try_reserve` in cases
312
where a rehash is needed. Previously would panic, adds the proper bounds on
413
reserve methods to do a rehash (previously bounds were missing, and reserve
5-
would result in panics). (Thank you @cuviper)
14+
would result in panics). (Thank you @cuviper!)
615

716
## [0.8.4]
817
- Now builds with `#![no_std]`.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashlink"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["kyren <[email protected]>"]
55
edition = "2018"
66
description = "HashMap-like containers that hold their key-value pairs in a user controllable order"

0 commit comments

Comments
 (0)