diff --git a/CHANGELOG.md b/CHANGELOG.md index 43c74325..73813f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.10.1 + +* Allow serializing `Map` ([#244]) +* Improve docs ([#240], [#243]) + +[#240]: https://github.com/rust-phf/rust-phf/pull/240 +[#243]: https://github.com/rust-phf/rust-phf/pull/243 +[#244]: https://github.com/rust-phf/rust-phf/pull/244 + ## 0.10.0 * Constify `len` and `is_empty` ([#224]) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 4c2c4a39..692dfd72 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.10.0" +version = "0.10.1" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" diff --git a/phf_codegen/test/Cargo.toml b/phf_codegen/test/Cargo.toml index e9d65264..4a850659 100644 --- a/phf_codegen/test/Cargo.toml +++ b/phf_codegen/test/Cargo.toml @@ -6,7 +6,7 @@ build = "build.rs" edition = "2018" [dependencies] -phf = { version = "0.10.0", features = ["uncased", "unicase"] } +phf = { version = "0.10", features = ["uncased", "unicase"] } uncased = { version = "0.9.6", default-features = false } unicase = "2.4.0"