Skip to content

Commit 532df99

Browse files
chore: release v3.7.0 (#327)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Veetaha <gersoh3@gmail.com>
1 parent 47a9419 commit 532df99

File tree

7 files changed

+27
-12
lines changed

7 files changed

+27
-12
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Add `bon` to your `Cargo.toml`.
199199

200200
```toml
201201
[dependencies]
202-
bon = "3.6"
202+
bon = "3.7"
203203
```
204204

205205
You can opt out of `std` and `alloc` cargo features with `default-features = false` for `no_std` environments.

bon-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bon-macros"
3-
version = "3.6.5"
3+
version = "3.7.0"
44

55
description = """
66
This is a proc-macro crate that is supposed to be a private implementation

bon-sandbox/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bon-sandbox"
3-
version = "3.6.5"
3+
version = "3.7.0"
44

55
description = """
66
Not a real crate! It's just a showcase of examples used by `bon`'s documentation
@@ -36,4 +36,4 @@ typed-builder = "0.21"
3636
[dependencies.bon]
3737
features = ["experimental-overwritable"]
3838
path = "../bon"
39-
version = "=3.6.5"
39+
version = "=3.7.0"

bon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bon"
3-
version = "3.6.5"
3+
version = "3.7.0"
44

55
description = "Next-gen compile-time-checked builder generator, named function's arguments, and more!"
66

@@ -45,7 +45,7 @@ workspace = true
4545
# The version of the macro crate is pinned to a specific one because the code
4646
# generated by the macros uses private APIs from the runtime crate that are not
4747
# guarded by semver.
48-
bon-macros = { path = "../bon-macros", version = "=3.6.5" }
48+
bon-macros = { path = "../bon-macros", version = "=3.7.0" }
4949
rustversion = "1"
5050

5151
[dev-dependencies]

website/src/changelog.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
# Changelog
22

3-
All notable changes to this project are documented here.
3+
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [3.7.0](https://github.com/elastio/bon/compare/v3.6.5...v3.7.0) - 2025-08-09
9+
10+
### Added
11+
12+
- Add support for [`#[builder(derive(IntoFuture(Box)))]`](https://bon-rs.com/reference/builder/top-level/derive#intofuture-derive) ([#322](https://github.com/elastio/bon/pull/322)).
13+
This allows calling `builder.await` instead of `builder.call().await`. Thanks [@jakubadamw](https://github.com/jakubadamw) for the contribution!
14+
15+
### Fixed
16+
17+
- Add missing `where` clause forwarding to `#[builder(derive(Into))]` ([#325](https://github.com/elastio/bon/pull/325))
18+
19+
### Internal
20+
21+
- Make tests pass without the `experimental-overwritable` feature ([#326](https://github.com/elastio/bon/pull/326))
22+
- Sunset financial support by Kindness ([#324](https://github.com/elastio/bon/pull/324))
23+
- Fix clippy lints from nightly (2025-08-09) ([#323](https://github.com/elastio/bon/pull/323))
924

1025
## [3.6.5](https://github.com/elastio/bon/compare/v3.6.4...v3.6.5) - 2025-07-18
1126

website/src/guide/typestate-api/custom-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,5 +293,5 @@ This is implemented as a cargo feature to make sure `bon` maintains a lower MSRV
293293

294294
```toml
295295
[dependencies]
296-
bon = { version = "3.6", features = ["implied-bounds"] }
296+
bon = { version = "3.7", features = ["implied-bounds"] }
297297
```

0 commit comments

Comments
 (0)