diff --git a/CHANGELOG.md b/CHANGELOG.md index 4339726..fb69023 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.3.0 +## 2.0.0 - Replace hash with faster and better finalized hash. This replaces the previous "fxhash" algorithm originating in Firefox diff --git a/Cargo.toml b/Cargo.toml index 2dffe86..3ab67fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-hash" -version = "1.2.0" +version = "2.0.0" authors = ["The Rust Project Developers"] description = "A speedy, non-cryptographic hashing algorithm used by rustc" license = "Apache-2.0/MIT" diff --git a/README.md b/README.md index 546a529..f3ab3c9 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 = "1.2", default-features = false } +rustc-hash = { version = "1.3", default-features = false } ```