diff --git a/Cargo.lock b/Cargo.lock index ddd2158c..97b3e45b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "bon" -version = "3.0.1" +version = "3.0.2" dependencies = [ "bon-macros", "expect-test", @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "bon-macros" -version = "3.0.1" +version = "3.0.2" dependencies = [ "darling", "expect-test", @@ -111,7 +111,7 @@ dependencies = [ [[package]] name = "bon-sandbox" -version = "3.0.1" +version = "3.0.2" dependencies = [ "bon", "buildstructor", diff --git a/bon-macros/Cargo.toml b/bon-macros/Cargo.toml index a493d6a1..a0a21efb 100644 --- a/bon-macros/Cargo.toml +++ b/bon-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-macros" -version = "3.0.1" +version = "3.0.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 fddd796e..87fce198 100644 --- a/bon-sandbox/Cargo.toml +++ b/bon-sandbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon-sandbox" -version = "3.0.1" +version = "3.0.2" description = """ Not a real crate! It's just a showcase of examples used by `bon`'s documentation @@ -29,7 +29,7 @@ targets = ["x86_64-unknown-linux-gnu"] workspace = true [dependencies] -bon = { path = "../bon", version = "=3.0.1", features = ["experimental-overwritable"] } +bon = { path = "../bon", version = "=3.0.2", features = ["experimental-overwritable"] } buildstructor = "0.5" derive_builder = "0.20" typed-builder = "0.20" diff --git a/bon/Cargo.toml b/bon/Cargo.toml index 1b2f8b25..3e1d488f 100644 --- a/bon/Cargo.toml +++ b/bon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bon" -version = "3.0.1" +version = "3.0.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.0.1" } +bon-macros = { path = "../bon-macros", version = "=3.0.2" } rustversion = "1" [dev-dependencies] diff --git a/website/src/changelog.md b/website/src/changelog.md index 642392bc..13676c63 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.0.2](https://github.com/elastio/bon/compare/v3.0.1...v3.0.2) - 2024-11-20 + +### Fixed + +- Fix `unexpected_cfgs` lint coming from `#[cfg(rust_analyzer)]` on the latest nightly ([#212](https://github.com/elastio/bon/pull/212)) + ## [3.0.1](https://github.com/elastio/bon/compare/v3.0.0...v3.0.1) - 2024-11-17 ### Fixed