From b1015561fb121c3e5698183c39df202e5a83994a Mon Sep 17 00:00:00 2001 From: James Kominick Date: Sun, 24 Sep 2023 11:58:53 -0400 Subject: [PATCH] release 0.46.0 --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c80351..1a07b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,14 @@ ## [Unreleased] ## Added -- Adds the `ahash` feature this uses the faster [ahash](https://github.com/tkaitchuck/aHash) algorithm. -- Sets `ahash` as a default feature. +## Changed +## Removed + +## [0.46.0] +## Added +- Add `ahash` feature to use the faster [ahash](https://github.com/tkaitchuck/aHash) algorithm. +- Set `ahash` as a default feature. +- Update hashbrown `0.13.0` -> `0.14.0` ## Changed ## Removed diff --git a/Cargo.toml b/Cargo.toml index 376b950..d39bf37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cached" -version = "0.45.1" +version = "0.46.0" authors = ["James Kominick "] description = "Generic cache implementations and simplified function memoization" repository = "https://github.com/jaemk/cached"