Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Jan 22, 2024
1 parent 6c0afc5 commit cb3da20
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
8 changes: 2 additions & 6 deletions derive_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 2023-12-21
## [0.13.0] - 2024-01-22
- Bump MSRV to 1.56.0
- Add `build_fn(error(validation_error = <bool>))` to disable generation of `ValidationError` within the builder's error so that `alloc::string` is avoided.
- Add feature `alloc` for controlling linking of `alloc` crate during `no_std`. This way users can use `no_std` without providing a `global_allocator`.

## [Unreleased] - 2023-07-25
- Make try-setters inherit `strip_option` from `setter` for `try_setter`. Using these settings together previously caused a compile error #284

## [0.13.0] - 2023-07-24
- Bump MSRV to 1.56.0

## [0.12.0] - 2022-11-28
- Produce error when `default` is used with `field(type = "...")` rather than silently ignoring `default` #269
- Add support for `crate = "..."` to support re-export scenarios #274
Expand Down
6 changes: 3 additions & 3 deletions derive_builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "derive_builder"
version = "0.12.0"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>"]

description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
repository = "https://github.com/colin-kiegel/rust-derive-builder"
documentation = "https://docs.rs/derive_builder/0.12.0"
documentation = "https://docs.rs/derive_builder/0.13.0"

license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -22,7 +22,7 @@ clippy = ["derive_builder_macro/clippy"]
alloc = ["derive_builder_macro/alloc"]

[dependencies]
derive_builder_macro = { version = "=0.12.0", path = "../derive_builder_macro" }
derive_builder_macro = { version = "=0.13.0", path = "../derive_builder_macro" }

[dev-dependencies]
pretty_assertions = "0.6.1"
Expand Down
2 changes: 1 addition & 1 deletion derive_builder_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_builder_core"
version = "0.12.0"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
Expand Down
6 changes: 3 additions & 3 deletions derive_builder_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "derive_builder_macro"
version = "0.12.0"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>"]

description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
repository = "https://github.com/colin-kiegel/rust-derive-builder"
documentation = "https://docs.rs/derive_builder_macro/0.12.0"
documentation = "https://docs.rs/derive_builder_macro/0.13.0"

license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -25,4 +25,4 @@ lib_has_std = ["derive_builder_core/lib_has_std"]

[dependencies]
syn = { version = "1.0.91", features = ["full", "extra-traits"] }
derive_builder_core = { version = "=0.12.0", path = "../derive_builder_core" }
derive_builder_core = { version = "=0.13.0", path = "../derive_builder_core" }

0 comments on commit cb3da20

Please sign in to comment.