Skip to content

Commit

Permalink
chore: release v2.2.1 (#121)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Veetaha <[email protected]>
  • Loading branch information
github-actions[bot] and Veetaha authored Sep 9, 2024
1 parent 25c0b30 commit 3bf514a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 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 = "2.2.0"
version = "2.2.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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bon"
version = "2.2.0"
version = "2.2.1"

description = "Generate builders for everything!"

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 = "=2.2.0" }
bon-macros = { path = "../bon-macros", version = "=2.2.1" }
rustversion = "1"

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

## [Unreleased]

## [2.2.1](https://github.com/elastio/bon/compare/v2.2.0...v2.2.1) - 2024-09-09

### Changed

- Lower MSRV from 1.70.0 to 1.59.0 ([#120](https://github.com/elastio/bon/pull/120))

## [2.2.0](https://github.com/elastio/bon/compare/v2.1.1...v2.2.0) - 2024-09-08

See the [blog post for this release](https://elastio.github.io/bon/blog/bon-builder-v2-2-release) that describes some of the most notable changes in detail.
Expand Down
2 changes: 1 addition & 1 deletion website/guide/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const [_, versionWildcard] = version.match(/(\d+.\d+).\d+/);

# Overview

`bon` is a Rust crate for generating compile-time-checked builders for functions and structs.
`bon` is a Rust crate for generating compile-time-checked builders for functions and structs. It also provides idiomatic partial application with optional and named parameters for functions and methods.

If you are new to the concept of builders or named function arguments, and you don't know what problems they may solve for you, then check out the motivational [blog post](../blog/how-to-do-named-function-arguments-in-rust).

Expand Down

0 comments on commit 3bf514a

Please sign in to comment.