Skip to content

Commit 9f43a1f

Browse files
chore: release v3.8.2 (#362)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Veetaha <[email protected]>
1 parent 9b97afd commit 9f43a1f

File tree

7 files changed

+27
-51
lines changed

7 files changed

+27
-51
lines changed

Cargo.lock

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

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.8.1"
3+
version = "3.8.2"
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.8.1"
3+
version = "3.8.2"
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.23"
3636
[dependencies.bon]
3737
features = ["experimental-overwritable"]
3838
path = "../bon"
39-
version = "=3.8.1"
39+
version = "=3.8.2"

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.8.1"
3+
version = "3.8.2"
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.8.1" }
48+
bon-macros = { path = "../bon-macros", version = "=3.8.2" }
4949
rustversion = "1"
5050

5151
[dev-dependencies]

bon/tests/integration/ui/compile_fail/attr_bon.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: Unknown field: `attrs`. Available values: `crate`
1+
error: Unknown field: `attrs`
22
--> tests/integration/ui/compile_fail/attr_bon.rs:5:7
33
|
44
5 | #[bon(attrs)]

bon/tests/integration/ui/compile_fail/attr_derive.stderr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ error: `#[builder(derive(Into))` is not supported for async functions because `F
7676
127 | async unsafe fn unsafe_async_function() -> Self {
7777
| ^^^^^
7878

79-
error: Unknown field: `bounds`
80-
--> tests/integration/ui/compile_fail/attr_derive.rs:132:23
79+
error: Unexpected meta-item format `list`
80+
--> tests/integration/ui/compile_fail/attr_derive.rs:132:18
8181
|
8282
132 | #[builder(derive(Into(bounds(u32: Copy))))]
83-
| ^^^^^^
83+
| ^^^^
8484

8585
error[E0277]: the trait bound `NoTraitImpls: Clone` is not satisfied
8686
--> tests/integration/ui/compile_fail/attr_derive.rs:9:23

website/src/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
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+
## [3.8.2](https://github.com/elastio/bon/compare/v3.8.1...v3.8.2) - 2026-01-08
9+
10+
### Fixed
11+
12+
- Don't attempt to compile big default value showcases as ignored rust doctests ([#360](https://github.com/elastio/bon/pull/360))
13+
14+
### Internal
15+
16+
- Regular maintenance ([#361](https://github.com/elastio/bon/pull/361), [#354](https://github.com/elastio/bon/pull/354), [#363](https://github.com/elastio/bon/pull/363))
17+
818
## [3.8.1](https://github.com/elastio/bon/compare/v3.8.0...v3.8.1) - 2025-10-08
919

1020
### Fixed

0 commit comments

Comments
 (0)