Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prepare 0.9.0 release
  • Loading branch information
JohnTitor committed Jun 17, 2021
1 parent 1fd3ca0 commit 2ca46c4
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -60,7 +60,7 @@ pub fn parse_keyword(keyword: &str) -> Option<Keyword> {

```toml
[dependencies]
phf = { version = "0.8", features = ["macros"] }
phf = { version = "0.9", features = ["macros"] }
```

#### Note
Expand Down
6 changes: 3 additions & 3 deletions phf/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"
Expand All @@ -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"]
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.8.0"
version = "0.9.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.8.0"
phf_shared = "0.8.0"
phf_generator = "0.9.0"
phf_shared = "0.9.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.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 }
4 changes: 2 additions & 2 deletions phf_generator/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.8.0"
version = "0.9.0"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
Expand All @@ -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 }

Expand Down
8 changes: 4 additions & 4 deletions phf_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "phf_macros"
version = "0.8.0"
version = "0.9.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.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" }
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.8.0"
version = "0.9.0"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
Expand Down

0 comments on commit 2ca46c4

Please sign in to comment.