From 5705f00f23e3bd77c453a1c0bbd3de34b572b049 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Mon, 28 Nov 2022 09:03:25 -0800 Subject: [PATCH] Bump version to 0.12.0 Because this made some previously-broken usages of the macro emit errors, bump minor version. --- derive_builder/CHANGELOG.md | 2 +- derive_builder/Cargo.toml | 6 +++--- derive_builder_core/Cargo.toml | 2 +- derive_builder_macro/Cargo.toml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/derive_builder/CHANGELOG.md b/derive_builder/CHANGELOG.md index b50581ab..ca0bd9dd 100644 --- a/derive_builder/CHANGELOG.md +++ b/derive_builder/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [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 f7f81371..62ed7b6c 100644 --- a/derive_builder/Cargo.toml +++ b/derive_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder" -version = "0.11.2" +version = "0.12.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.11.2" +documentation = "https://docs.rs/derive_builder/0.12.0" license = "MIT/Apache-2.0" categories = ["development-tools", "rust-patterns"] @@ -21,7 +21,7 @@ std = [] clippy = ["derive_builder_macro/clippy"] [dependencies] -derive_builder_macro = { version = "=0.11.2", path = "../derive_builder_macro" } +derive_builder_macro = { version = "=0.12.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 1b116020..ee6bace8 100644 --- a/derive_builder_core/Cargo.toml +++ b/derive_builder_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_core" -version = "0.11.2" +version = "0.12.0" authors = ["Colin Kiegel ", "Pascal Hertleif ", "Jan-Erik Rediger ", diff --git a/derive_builder_macro/Cargo.toml b/derive_builder_macro/Cargo.toml index 76c3f801..7a733ada 100644 --- a/derive_builder_macro/Cargo.toml +++ b/derive_builder_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_macro" -version = "0.11.2" +version = "0.12.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.11.2" +documentation = "https://docs.rs/derive_builder_macro/0.12.0" license = "MIT/Apache-2.0" categories = ["development-tools", "rust-patterns"] @@ -23,4 +23,4 @@ clippy = ["derive_builder_core/clippy"] [dependencies] syn = { version = "1.0.91", features = ["full", "extra-traits"] } -derive_builder_core = { version = "=0.11.2", path = "../derive_builder_core" } +derive_builder_core = { version = "=0.12.0", path = "../derive_builder_core" }