diff --git a/derive_builder/CHANGELOG.md b/derive_builder/CHANGELOG.md index f7a550c..2f30d16 100644 --- a/derive_builder/CHANGELOG.md +++ b/derive_builder/CHANGELOG.md @@ -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 = ))` 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 diff --git a/derive_builder/Cargo.toml b/derive_builder/Cargo.toml index e9a9d8f..45fe1ef 100644 --- a/derive_builder/Cargo.toml +++ b/derive_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder" -version = "0.12.0" +version = "0.13.0" authors = ["Colin Kiegel ", "Pascal Hertleif ", "Jan-Erik Rediger ", @@ -8,7 +8,7 @@ authors = ["Colin Kiegel ", 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"] @@ -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" diff --git a/derive_builder_core/Cargo.toml b/derive_builder_core/Cargo.toml index 444c33f..0cfe6c0 100644 --- a/derive_builder_core/Cargo.toml +++ b/derive_builder_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_core" -version = "0.12.0" +version = "0.13.0" authors = ["Colin Kiegel ", "Pascal Hertleif ", "Jan-Erik Rediger ", diff --git a/derive_builder_macro/Cargo.toml b/derive_builder_macro/Cargo.toml index cfda5e2..c520964 100644 --- a/derive_builder_macro/Cargo.toml +++ b/derive_builder_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_macro" -version = "0.12.0" +version = "0.13.0" authors = ["Colin Kiegel ", "Pascal Hertleif ", "Jan-Erik Rediger ", @@ -8,7 +8,7 @@ authors = ["Colin Kiegel ", 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"] @@ -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" }