Skip to content

Commit

Permalink
Release phf_shared v0.11.1, phf_generator v0.11.1, phf_macros v0.11.1…
Browse files Browse the repository at this point in the history
…, phf v0.11.1, phf_codegen v0.11.1
  • Loading branch information
JohnTitor committed Aug 8, 2022
1 parent 3c6af3f commit 3897b21
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 23 deletions.
7 changes: 5 additions & 2 deletions phf/CHANGELOG.md
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.11.1 (2022-08-08)

<csr-id-92e7b433a4f62cc9b070cd1d678a6061d0906ee6/>

### Chore

Expand Down Expand Up @@ -33,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 233 commits contributed to the release over the course of 2953 calendar days.
- 234 commits contributed to the release over the course of 2957 calendar days.
- 3 commits where understood as [conventional](https://www.conventionalcommits.org).
- 1 unique issue was worked on: [#249](https://github.com/rust-phf/rust-phf/issues/249)

Expand All @@ -46,6 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#249](https://github.com/rust-phf/rust-phf/issues/249)**
- Add `Map::new()` function and `Default` implementation to create new, empty map ([`baac7d0`](https://github.com/rust-phf/rust-phf/commit/baac7d065a71a388476b998ba55b1c0aedaa9d86))
* **Uncategorized**
- Replace handmade changelog with generated one by `cargo-smart-release` ([`cb84cf6`](https://github.com/rust-phf/rust-phf/commit/cb84cf6636ab52823c53e70d6abeac8f648a3482))
- Add category to crates ([`32a72c3`](https://github.com/rust-phf/rust-phf/commit/32a72c3859997fd6b590e9ec092ae789d2acdf55))
- Update repository links on Cargo.toml ([`1af3b0f`](https://github.com/rust-phf/rust-phf/commit/1af3b0fe1f8fdcae7ccc1bc8d51de309fb16a6bf))
- Release 0.11.0 ([`d2efdc0`](https://github.com/rust-phf/rust-phf/commit/d2efdc08a7eb1d0d6c414b7b2ac41ce1fe1f9a43))
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.11.0"
version = "0.11.1"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/rust-phf/rust-phf"
Expand All @@ -23,8 +23,8 @@ unicase = ["phf_macros?/unicase", "phf_shared/unicase"]
macros = ["phf_macros"]

[dependencies]
phf_macros = { version = "0.11.0", optional = true, path = "../phf_macros" }
phf_shared = { version = "0.11.0", default-features = false, path = "../phf_shared" }
phf_macros = { version = "^0.11.1", optional = true, path = "../phf_macros" }
phf_shared = { version = "^0.11.1", default-features = false, path = "../phf_shared" }
serde = { version = "1.0", optional = true }

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion phf/examples/unicase-example/Cargo.toml
Expand Up @@ -7,5 +7,5 @@ rust-version = "1.60"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
phf = { version = "0.11", features = ["macros", "unicase"] }
phf = { version = "^0.11.1", features = ["macros", "unicase"] }
unicase = "2"
7 changes: 5 additions & 2 deletions phf_codegen/CHANGELOG.md
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.11.1 (2022-08-08)

<csr-id-f04e8def1d3ca69dadada2b37297a1b92cfe5440/>

### Other

Expand All @@ -15,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 99 commits contributed to the release over the course of 2718 calendar days.
- 100 commits contributed to the release over the course of 2723 calendar days.
- 1 commit where understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' where seen in commit messages

Expand All @@ -26,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Replace handmade changelog with generated one by `cargo-smart-release` ([`cb84cf6`](https://github.com/rust-phf/rust-phf/commit/cb84cf6636ab52823c53e70d6abeac8f648a3482))
- Add category to crates ([`32a72c3`](https://github.com/rust-phf/rust-phf/commit/32a72c3859997fd6b590e9ec092ae789d2acdf55))
- Update repository links on Cargo.toml ([`1af3b0f`](https://github.com/rust-phf/rust-phf/commit/1af3b0fe1f8fdcae7ccc1bc8d51de309fb16a6bf))
- Release 0.11.0 ([`d2efdc0`](https://github.com/rust-phf/rust-phf/commit/d2efdc08a7eb1d0d6c414b7b2ac41ce1fe1f9a43))
Expand Down
2 changes: 1 addition & 1 deletion phf_codegen/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.11.0"
version = "0.11.1"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/rust-phf/rust-phf"
Expand Down
4 changes: 2 additions & 2 deletions phf_codegen/test/Cargo.toml
Expand Up @@ -6,11 +6,11 @@ build = "build.rs"
edition = "2021"

[dependencies]
phf = { version = "0.11", features = ["uncased", "unicase"] }
phf = { version = "^0.11.1", features = ["uncased", "unicase"] }
uncased = { version = "0.9.6", default-features = false }
unicase = "2.4.0"

[build-dependencies]
phf_codegen = { version = "0.11.0", path = ".." }
phf_codegen = { version = "^0.11.1", path = ".." }
unicase = "2.4.0"
uncased = { version = "0.9.6", default-features = false }
13 changes: 10 additions & 3 deletions phf_generator/CHANGELOG.md
Expand Up @@ -5,14 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.11.1 (2022-08-08)

### Other

- <csr-id-27a2ce4b07ddc68c45e2faccbfef52d22375c1b0/> Unpin the `criterion` dependency


### Commit Statistics

<csr-read-only-do-not-edit/>

- 75 commits contributed to the release over the course of 2719 calendar days.
- 0 commits where understood as [conventional](https://www.conventionalcommits.org).
- 77 commits contributed to the release over the course of 2723 calendar days.
- 1 commit where understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' where seen in commit messages

### Commit Details
Expand All @@ -22,6 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Unpin the `criterion` dependency ([`27a2ce4`](https://github.com/rust-phf/rust-phf/commit/27a2ce4b07ddc68c45e2faccbfef52d22375c1b0))
- Replace handmade changelog with generated one by `cargo-smart-release` ([`cb84cf6`](https://github.com/rust-phf/rust-phf/commit/cb84cf6636ab52823c53e70d6abeac8f648a3482))
- Disable default features for rand dep in phf_generator ([`deefda1`](https://github.com/rust-phf/rust-phf/commit/deefda1cdff6ced54526ddb702b13282e0c8c66b))
- Add README.md for some crates ([`e0b34fa`](https://github.com/rust-phf/rust-phf/commit/e0b34fa0a697f45f2c41a875bf84b78a6d3ce079))
- Add category to crates ([`32a72c3`](https://github.com/rust-phf/rust-phf/commit/32a72c3859997fd6b590e9ec092ae789d2acdf55))
Expand Down
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.11.0"
version = "0.11.1"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/rust-phf/rust-phf"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
phf_shared = { version = "0.11.0", default-features = false }
phf_shared = { version = "^0.11.1", default-features = false }
# for stable black_box()
criterion = { version = "0.3.6", optional = true }

Expand Down
8 changes: 6 additions & 2 deletions phf_macros/CHANGELOG.md
Expand Up @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.11.1 (2022-08-08)

<csr-id-d40d663ca96f668bcd6f86cc691085629111c0b5/>
<csr-id-8225c4b90d6ee71483304e71342c269fca86a044/>

### Chore

Expand Down Expand Up @@ -34,7 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 149 commits contributed to the release over the course of 2747 calendar days.
- 150 commits contributed to the release over the course of 2751 calendar days.
- 3 commits where understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' where seen in commit messages

Expand All @@ -45,6 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Replace handmade changelog with generated one by `cargo-smart-release` ([`cb84cf6`](https://github.com/rust-phf/rust-phf/commit/cb84cf6636ab52823c53e70d6abeac8f648a3482))
- Add category to crates ([`32a72c3`](https://github.com/rust-phf/rust-phf/commit/32a72c3859997fd6b590e9ec092ae789d2acdf55))
- Update repository links on Cargo.toml ([`1af3b0f`](https://github.com/rust-phf/rust-phf/commit/1af3b0fe1f8fdcae7ccc1bc8d51de309fb16a6bf))
- Release 0.11.0 ([`d2efdc0`](https://github.com/rust-phf/rust-phf/commit/d2efdc08a7eb1d0d6c414b7b2ac41ce1fe1f9a43))
Expand Down
4 changes: 2 additions & 2 deletions phf_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "phf_macros"
version = "0.11.0"
version = "0.11.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -24,4 +24,4 @@ proc-macro2 = "1"
unicase_ = { package = "unicase", version = "2.4.0", optional = true }

phf_generator = "0.11.0"
phf_shared = { version = "0.11.0", default-features = false }
phf_shared = { version = "^0.11.1", default-features = false }
8 changes: 6 additions & 2 deletions phf_shared/CHANGELOG.md
Expand Up @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.11.1 (2022-08-08)

<csr-id-71977b26194ce6049a063131792760933952424b/>
<csr-id-3068a18e997ef04c302a10b51271353897a92027/>

### Chore

Expand All @@ -20,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 129 commits contributed to the release over the course of 2942 calendar days.
- 130 commits contributed to the release over the course of 2946 calendar days.
- 2 commits where understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' where seen in commit messages

Expand All @@ -31,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Replace handmade changelog with generated one by `cargo-smart-release` ([`cb84cf6`](https://github.com/rust-phf/rust-phf/commit/cb84cf6636ab52823c53e70d6abeac8f648a3482))
- Add README.md for some crates ([`e0b34fa`](https://github.com/rust-phf/rust-phf/commit/e0b34fa0a697f45f2c41a875bf84b78a6d3ce079))
- Add category to crates ([`32a72c3`](https://github.com/rust-phf/rust-phf/commit/32a72c3859997fd6b590e9ec092ae789d2acdf55))
- Update repository links on Cargo.toml ([`1af3b0f`](https://github.com/rust-phf/rust-phf/commit/1af3b0fe1f8fdcae7ccc1bc8d51de309fb16a6bf))
Expand Down
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.11.0"
version = "0.11.1"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/rust-phf/rust-phf"
Expand Down

0 comments on commit 3897b21

Please sign in to comment.