Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v3.0.1 #209

Merged
merged 2 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bon-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bon-macros"
version = "3.0.0"
version = "3.0.1"

description = """
This is a proc-macro crate that is supposed to be a private implementation
Expand Down
4 changes: 2 additions & 2 deletions bon-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bon-sandbox"
version = "3.0.0"
version = "3.0.1"

description = """
Not a real crate! It's just a showcase of examples used by `bon`'s documentation
Expand Down Expand Up @@ -29,7 +29,7 @@ targets = ["x86_64-unknown-linux-gnu"]
workspace = true

[dependencies]
bon = { path = "../bon", version = "=3.0.0", features = ["experimental-overwritable"] }
bon = { path = "../bon", version = "=3.0.1", features = ["experimental-overwritable"] }
buildstructor = "0.5"
derive_builder = "0.20"
typed-builder = "0.20"
4 changes: 2 additions & 2 deletions bon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bon"
version = "3.0.0"
version = "3.0.1"

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

Expand Down Expand Up @@ -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.0" }
bon-macros = { path = "../bon-macros", version = "=3.0.1" }
rustversion = "1"

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions website/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1](https://github.com/elastio/bon/compare/v3.0.0...v3.0.1) - 2024-11-17

### Fixed

- Fix handling of lifetimes not used in fn param types ([#208](https://github.com/elastio/bon/pull/208))

## [3.0.0](https://github.com/elastio/bon/compare/v2.3.0...v3.0.0) - 2024-11-13

See the most interesting changes described in [**Bon 3.0 Release blog post**](https://bon-rs.com/blog/bon-v3-release).
Expand Down
Loading