diff --git a/CHANGELOG.md b/CHANGELOG.md index c7893af..975c670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.1.0 + +- Implement `Clone` for `FxRandomState` +- Implement `Clone` for `FxSeededState` +- Use SPDX license expression in license field + ## 2.0.0 - Replace hash with faster and better finalized hash. diff --git a/Cargo.toml b/Cargo.toml index 43e021c..98eceb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-hash" -version = "2.0.0" +version = "2.1.0" authors = ["The Rust Project Developers"] description = "A speedy, non-cryptographic hashing algorithm used by rustc" license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index d93cf46..bcac345 100644 --- a/README.md +++ b/README.md @@ -38,5 +38,5 @@ The `std` feature is on by default to enable collections. It can be turned off in `Cargo.toml` like so: ```toml -rustc-hash = { version = "2.0", default-features = false } +rustc-hash = { version = "2.1", default-features = false } ```