Skip to content

Commit

Permalink
Prepare for release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Aug 10, 2021
1 parent fbb18f9 commit 588ac25
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 18 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
@@ -1,14 +1,21 @@
# Changelog

## 0.9.1
## 0.10.0

* (phf-generator): Pin `criterion` version to keep MSRV
* Constify `len` and `is_empty` ([#224])
* Implement `Clone`, `Debug`, and `FusedIterator` ([#226])

[#224]: https://github.com/rust-phf/rust-phf/pull/224
[#226]: https://github.com/rust-phf/rust-phf/pull/226

## 0.9.1

**Yanked except for `phf-generator`, use 0.10.0 instead.**

* (phf-generator): Pin `criterion` version to keep MSRV
* Constify `len` and `is_empty` ([#224]) (**yanked**)
* Implement `Clone`, `Debug`, and `FusedIterator` ([#226]) (**yanked**)

## 0.9.0

* Our MSRV is now 1.41 or 1.46 (because of dependencies)
Expand Down
7 changes: 3 additions & 4 deletions phf/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.9.1"
version = "0.10.0"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
Expand All @@ -24,10 +24,9 @@ macros = [
]

[dependencies]
phf_shared = { version = "0.9.0", default-features = false }

proc-macro-hack = { version = "0.5.4", optional = true }
phf_macros = { version = "0.9.1", optional = true }
phf_macros = { version = "0.10.0", optional = true }
phf_shared = { version = "0.10.0", default-features = false }

[package.metadata.docs.rs]
features = ["macros"]
6 changes: 3 additions & 3 deletions phf_codegen/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.9.1"
version = "0.10.0"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
edition = "2018"
readme = "../README.md"

[dependencies]
phf_generator = "0.9.1"
phf_shared = "0.9.0"
phf_generator = "0.10.0"
phf_shared = "0.10.0"
4 changes: 2 additions & 2 deletions phf_codegen/test/Cargo.toml
Expand Up @@ -6,11 +6,11 @@ build = "build.rs"
edition = "2018"

[dependencies]
phf = { version = "0.9", features = ["uncased", "unicase"] }
phf = { version = "0.10.0", features = ["uncased", "unicase"] }
uncased = { version = "0.9.6", default-features = false }
unicase = "2.4.0"

[build-dependencies]
phf_codegen = "0.9"
phf_codegen = "0.10.0"
unicase = "2.4.0"
uncased = { version = "0.9.6", default-features = false }
4 changes: 2 additions & 2 deletions phf_generator/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.9.1"
version = "0.10.0"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
edition = "2018"

[dependencies]
rand = { version = "0.8", features = ["small_rng"] }
phf_shared = { version = "0.9.0", default-features = false }
phf_shared = { version = "0.10.0", default-features = false }
# for stable black_box()
criterion = { version = "=0.3.4", optional = true }

Expand Down
8 changes: 4 additions & 4 deletions phf_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "phf_macros"
version = "0.9.1"
version = "0.10.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -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.9.1"
phf_shared = { version = "0.9.0", default-features = false }
phf_generator = "0.10.0"
phf_shared = { version = "0.10.0", default-features = false }

[dev-dependencies]
trybuild = "1.0"
phf = { version = "0.9", features = ["macros", "unicase"] }
phf = { version = "0.10", path = "../phf", features = ["macros", "unicase"] }
unicase_ = { package = "unicase", version = "2.4.0" }
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.9.0"
version = "0.10.0"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
Expand Down

0 comments on commit 588ac25

Please sign in to comment.