From 103801851234df5aeb451cddd900fb8228ac8544 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 11:02:43 +0000 Subject: [PATCH 1/3] chore: release v3.7.2 --- Cargo.lock | 6 +++--- bon-macros/Cargo.toml | 2 +- bon-sandbox/Cargo.toml | 4 ++-- bon/Cargo.toml | 4 ++-- website/src/changelog.md | 15 +++++++++++++++ 5 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1dde27d8..26feec05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" [[package]] name = "bon" -version = "3.7.1" +version = "3.7.2" dependencies = [ "bon-macros", "expect-test", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "bon-macros" -version = "3.7.1" +version = "3.7.2" dependencies = [ "darling 0.21.0", "expect-test", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "bon-sandbox" -version = "3.7.1" +version = "3.7.2" dependencies = [ "bon", "buildstructor", diff --git a/bon-macros/Cargo.toml b/bon-macros/Cargo.toml index 0a6d054e..3a4c67fc 100644 --- a/bon-macros/Cargo.toml +++ b/bon-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-macros" -version = "3.7.1" +version = "3.7.2" 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 067ac874..fe2dd725 100644 --- a/bon-sandbox/Cargo.toml +++ b/bon-sandbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-sandbox" -version = "3.7.1" +version = "3.7.2" description = """ Not a real crate! It's just a showcase of examples used by `bon`'s documentation @@ -36,4 +36,4 @@ typed-builder = "0.21" [dependencies.bon] features = ["experimental-overwritable"] path = "../bon" -version = "=3.7.1" +version = "=3.7.2" diff --git a/bon/Cargo.toml b/bon/Cargo.toml index 34a71996..94fb92c5 100644 --- a/bon/Cargo.toml +++ b/bon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon" -version = "3.7.1" +version = "3.7.2" 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.7.1" } +bon-macros = { path = "../bon-macros", version = "=3.7.2" } rustversion = "1" [dev-dependencies] diff --git a/website/src/changelog.md b/website/src/changelog.md index c08aa3a5..d52b95bd 100644 --- a/website/src/changelog.md +++ b/website/src/changelog.md @@ -5,6 +5,21 @@ 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] + +## [3.7.2](https://github.com/elastio/bon/compare/v3.7.1...v3.7.2) - 2025-09-02 + +### Other + +- Add missing lifetime replacement for generic param decls on `derive(IntoFuture)` impl block ([#337](https://github.com/elastio/bon/pull/337)) +- Set lowerbound of `rustversion` of to v1.0.19 ([#336](https://github.com/elastio/bon/pull/336)) +# Changelog + +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). + ## [3.7.1](https://github.com/elastio/bon/compare/v3.7.0...v3.7.1) - 2025-08-19 This is a small patch release to make `bon` easier to package for Debian. From 025259e909b7963e633df29b8f3725dc75bc319e Mon Sep 17 00:00:00 2001 From: Veetaha Date: Tue, 2 Sep 2025 11:12:42 +0000 Subject: [PATCH 2/3] Better changelog --- website/src/changelog.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/website/src/changelog.md b/website/src/changelog.md index d52b95bd..30e2c9d8 100644 --- a/website/src/changelog.md +++ b/website/src/changelog.md @@ -5,20 +5,12 @@ 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] - ## [3.7.2](https://github.com/elastio/bon/compare/v3.7.1...v3.7.2) - 2025-09-02 -### Other - -- Add missing lifetime replacement for generic param decls on `derive(IntoFuture)` impl block ([#337](https://github.com/elastio/bon/pull/337)) -- Set lowerbound of `rustversion` of to v1.0.19 ([#336](https://github.com/elastio/bon/pull/336)) -# Changelog - -All notable changes to this project will be documented in this file. +### Fixed -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). +- Add missing lifetime replacement for generic param declarations on `derive(IntoFuture)` impl block ([#337](https://github.com/elastio/bon/pull/337)) +- Set the lower bound requirement of `rustversion` to v1.0.19 ([#336](https://github.com/elastio/bon/pull/336)). Thanks [@Fokko](https://github.com/Fokko) for the contribution! ## [3.7.1](https://github.com/elastio/bon/compare/v3.7.0...v3.7.1) - 2025-08-19 From d3a81ef6a6a92c599c00aec8641ae1219e92ad5a Mon Sep 17 00:00:00 2001 From: Veetaha Date: Tue, 2 Sep 2025 11:13:22 +0000 Subject: [PATCH 3/3] taplo fmt --- 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 fe2dd725..6e8b18c8 100644 --- a/bon-sandbox/Cargo.toml +++ b/bon-sandbox/Cargo.toml @@ -36,4 +36,4 @@ typed-builder = "0.21" [dependencies.bon] features = ["experimental-overwritable"] path = "../bon" -version = "=3.7.2" +version = "=3.7.2"