diff --git a/CHANGELOG.md b/CHANGELOG.md index b1247cec..3680f851 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.9.0 * Our MSRV is now 1.46.0 (because of dependencies) * `rand` dependency has been upgraded to 0.8 diff --git a/README.md b/README.md index 1e1458aa..7e110889 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ will not work, set `default-features = false` for the dependency: ```toml [dependencies] # to use `phf` in `no_std` environments -phf = { version = "0.8", default-features = false } +phf = { version = "0.9", default-features = false } ``` ### phf_macros @@ -60,7 +60,7 @@ pub fn parse_keyword(keyword: &str) -> Option { ```toml [dependencies] -phf = { version = "0.8", features = ["macros"] } +phf = { version = "0.9", features = ["macros"] } ``` #### Note diff --git a/phf/Cargo.toml b/phf/Cargo.toml index a16772c2..2715cbfa 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.8.0" +version = "0.9.0" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -24,10 +24,10 @@ macros = [ ] [dependencies] -phf_shared = { version = "0.8.0", default-features = false } +phf_shared = { version = "0.9.0", default-features = false } proc-macro-hack = { version = "0.5.4", optional = true } -phf_macros = { version = "0.8.0", optional = true } +phf_macros = { version = "0.9.0", optional = true } [package.metadata.docs.rs] features = ["macros"] diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index f9107ad0..3c59cde4 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.8.0" +version = "0.9.0" license = "MIT" description = "Codegen library for PHF types" repository = "https://github.com/sfackler/rust-phf" @@ -9,5 +9,5 @@ edition = "2018" readme = "../README.md" [dependencies] -phf_generator = "0.8.0" -phf_shared = "0.8.0" +phf_generator = "0.9.0" +phf_shared = "0.9.0" diff --git a/phf_codegen/test/Cargo.toml b/phf_codegen/test/Cargo.toml index 9499fcb2..1c104060 100644 --- a/phf_codegen/test/Cargo.toml +++ b/phf_codegen/test/Cargo.toml @@ -6,11 +6,11 @@ build = "build.rs" edition = "2018" [dependencies] -phf = { version = "0.8", features = ["uncased", "unicase"] } +phf = { version = "0.9", features = ["uncased", "unicase"] } uncased = { version = "0.9.6", default-features = false } unicase = "2.4.0" [build-dependencies] -phf_codegen = "0.8" +phf_codegen = "0.9" unicase = "2.4.0" uncased = { version = "0.9.6", default-features = false } diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 9dc9001c..4c675861 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.8.0" +version = "0.9.0" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" @@ -10,7 +10,7 @@ include = ["src/**/*"] [dependencies] rand = { version = "0.8", features = ["small_rng"] } -phf_shared = { version = "0.8.0", default-features = false } +phf_shared = { version = "0.9.0", default-features = false } # for stable black_box() criterion = { version = "0.3", optional = true } diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index e2841707..21a1ce35 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "phf_macros" -version = "0.8.0" +version = "0.9.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT" @@ -22,10 +22,10 @@ proc-macro2 = "1" proc-macro-hack = "0.5.4" unicase_ = { package = "unicase", version = "2.4.0", optional = true } -phf_generator = "0.8.0" -phf_shared = { version = "0.8.0", default-features = false } +phf_generator = "0.9.0" +phf_shared = { version = "0.9.0", default-features = false } [dev-dependencies] trybuild = "1.0" -phf = { version = "0.8", features = ["macros", "unicase"] } +phf = { version = "0.9", features = ["macros", "unicase"] } unicase_ = { package = "unicase", version = "2.4.0" } diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 59dc7174..36f1b86e 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.8.0" +version = "0.9.0" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf"