From 28ba04e8585cd0368887f3825819ba10c4044d17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 00:05:25 +0000 Subject: [PATCH 1/3] chore: release v3.3.1 --- Cargo.lock | 6 +++--- bon-macros/Cargo.toml | 2 +- bon-sandbox/Cargo.toml | 4 ++-- bon/Cargo.toml | 4 ++-- website/src/changelog.md | 6 ++++++ 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 226d9e82..5a891389 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "bon" -version = "3.3.0" +version = "3.3.1" dependencies = [ "bon-macros", "expect-test", @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "bon-macros" -version = "3.3.0" +version = "3.3.1" dependencies = [ "darling", "expect-test", @@ -111,7 +111,7 @@ dependencies = [ [[package]] name = "bon-sandbox" -version = "3.3.0" +version = "3.3.1" dependencies = [ "bon", "buildstructor", diff --git a/bon-macros/Cargo.toml b/bon-macros/Cargo.toml index 9767d5ba..3512bdd9 100644 --- a/bon-macros/Cargo.toml +++ b/bon-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-macros" -version = "3.3.0" +version = "3.3.1" description = """ This is a proc-macro crate that is supposed to be a private implementation diff --git a/bon-sandbox/Cargo.toml b/bon-sandbox/Cargo.toml index 03edf6ff..026c074c 100644 --- a/bon-sandbox/Cargo.toml +++ b/bon-sandbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-sandbox" -version = "3.3.0" +version = "3.3.1" description = """ Not a real crate! It's just a showcase of examples used by `bon`'s documentation @@ -36,4 +36,4 @@ typed-builder = "0.20" [dependencies.bon] features = ["experimental-overwritable", "experimental-getter"] path = "../bon" -version = "=3.3.0" +version = "=3.3.1" diff --git a/bon/Cargo.toml b/bon/Cargo.toml index f9ae78f5..c4d01693 100644 --- a/bon/Cargo.toml +++ b/bon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon" -version = "3.3.0" +version = "3.3.1" description = "Next-gen compile-time-checked builder generator, named function's arguments, and more!" @@ -45,7 +45,7 @@ workspace = true # The version of the macro crate is pinned to a specific one because the code # generated by the macros uses private APIs from the runtime crate that are not # guarded by semver. -bon-macros = { path = "../bon-macros", version = "=3.3.0" } +bon-macros = { path = "../bon-macros", version = "=3.3.1" } rustversion = "1" [dev-dependencies] diff --git a/website/src/changelog.md b/website/src/changelog.md index 19c0b2b2..84119f6b 100644 --- a/website/src/changelog.md +++ b/website/src/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.3.1](https://github.com/elastio/bon/compare/v3.3.0...v3.3.1) - 2024-12-23 + +### Other + +- Fix `clippy::empty_enum` triggering on nightly with `feature(never_type)` enabled ([#234](https://github.com/elastio/bon/pull/234)) + ## [3.3.0](https://github.com/elastio/bon/compare/v3.2.0...v3.3.0) - 2024-12-07 ### Added From 05b8b1edf06e70dc729656f603a5731ba25a0210 Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 23 Dec 2024 00:05:59 +0000 Subject: [PATCH 2/3] Better changelog --- website/src/changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/changelog.md b/website/src/changelog.md index 84119f6b..ff5ea54e 100644 --- a/website/src/changelog.md +++ b/website/src/changelog.md @@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [3.3.1](https://github.com/elastio/bon/compare/v3.3.0...v3.3.1) - 2024-12-23 -### Other +### Fixed -- Fix `clippy::empty_enum` triggering on nightly with `feature(never_type)` enabled ([#234](https://github.com/elastio/bon/pull/234)) +- Fix `clippy::empty_enum` triggering on nightly with `feature(never_type)` enabled ([#234](https://github.com/elastio/bon/pull/234)) ## [3.3.0](https://github.com/elastio/bon/compare/v3.2.0...v3.3.0) - 2024-12-07 From 00767a416dd1e760501e245688e909b8ecddb15c Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 23 Dec 2024 00:06:58 +0000 Subject: [PATCH 3/3] Fix formatting --- bon-sandbox/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bon-sandbox/Cargo.toml b/bon-sandbox/Cargo.toml index 026c074c..e51d4f4b 100644 --- a/bon-sandbox/Cargo.toml +++ b/bon-sandbox/Cargo.toml @@ -36,4 +36,4 @@ typed-builder = "0.20" [dependencies.bon] features = ["experimental-overwritable", "experimental-getter"] path = "../bon" -version = "=3.3.1" +version = "=3.3.1"