From 107bd5d028e4887e55d03e48d10146f666e83626 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Wed, 28 Aug 2024 18:35:39 -0700 Subject: [PATCH] Bump version to 0.20.1 --- derive_builder/CHANGELOG.md | 3 +++ derive_builder/Cargo.toml | 6 +++--- derive_builder_core/Cargo.toml | 2 +- derive_builder_macro/Cargo.toml | 6 +++--- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/derive_builder/CHANGELOG.md b/derive_builder/CHANGELOG.md index 973196d..810143e 100644 --- a/derive_builder/CHANGELOG.md +++ b/derive_builder/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.20.1] - 2024-08-28 +- Forward default type params #319 + ## [0.20.0] - 2024-02-14 - Bump `syn` to version 2 #308 - Bump `darling` to version 0.20.6 #308 diff --git a/derive_builder/Cargo.toml b/derive_builder/Cargo.toml index d1a4201..5a52747 100644 --- a/derive_builder/Cargo.toml +++ b/derive_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder" -version = "0.20.0" +version = "0.20.1" authors = [ "Colin Kiegel ", "Pascal Hertleif ", @@ -11,7 +11,7 @@ edition = "2018" 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.20.0" +documentation = "https://docs.rs/derive_builder/0.20.1" license = "MIT OR Apache-2.0" categories = ["development-tools", "rust-patterns"] @@ -25,7 +25,7 @@ clippy = ["derive_builder_macro/clippy"] alloc = ["derive_builder_macro/alloc"] [dependencies] -derive_builder_macro = { version = "=0.20.0", path = "../derive_builder_macro" } +derive_builder_macro = { version = "=0.20.1", 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 433e93b..f83557c 100644 --- a/derive_builder_core/Cargo.toml +++ b/derive_builder_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_core" -version = "0.20.0" +version = "0.20.1" authors = [ "Colin Kiegel ", "Pascal Hertleif ", diff --git a/derive_builder_macro/Cargo.toml b/derive_builder_macro/Cargo.toml index d419fd3..2beab7a 100644 --- a/derive_builder_macro/Cargo.toml +++ b/derive_builder_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_macro" -version = "0.20.0" +version = "0.20.1" authors = [ "Colin Kiegel ", "Pascal Hertleif ", @@ -11,7 +11,7 @@ edition = "2018" 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.20.0" +documentation = "https://docs.rs/derive_builder_macro/0.20.1" license = "MIT OR Apache-2.0" categories = ["development-tools", "rust-patterns"] @@ -27,5 +27,5 @@ clippy = ["derive_builder_core/clippy"] lib_has_std = ["derive_builder_core/lib_has_std"] [dependencies] -derive_builder_core = { version = "=0.20.0", path = "../derive_builder_core" } +derive_builder_core = { version = "=0.20.1", path = "../derive_builder_core" } syn = { version = "2.0.15", features = ["full", "extra-traits"] }