Skip to content

Commit

Permalink
prepare for 0.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kyren committed May 12, 2024
1 parent 039c9b5 commit 006dc69
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
## [0.9.1]
- Bugfix: `LruCache::contains_key` should take `&self` and not move the entry as
though it is accessed.
- Add basic `CursorMut` API to `HashMap` (thanks @olebedev!)
- Bump `hashbrown` dependency to depend on a version of `hashbrown` past a
downstream `zerocopy` dependency.
- Don't depend on default features of `hashbrown`, removes `allocator-api2`
dependency.

## [0.9.0]
- API incompatible change: Don't panic in `reserve` and `try_reserve` in cases
where a rehash is needed. Previously would panic, adds the proper bounds on
reserve methods to do a rehash (previously bounds were missing, and reserve
would result in panics). (Thank you @cuviper)
would result in panics). (Thank you @cuviper!)

## [0.8.4]
- Now builds with `#![no_std]`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hashlink"
version = "0.9.0"
version = "0.9.1"
authors = ["kyren <kerriganw@gmail.com>"]
edition = "2018"
description = "HashMap-like containers that hold their key-value pairs in a user controllable order"
Expand Down

0 comments on commit 006dc69

Please sign in to comment.