From 0b104fa91fb4d97dc245fca0a79ba064a84accca Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Wed, 21 Apr 2021 09:19:21 -0700 Subject: [PATCH] Bump version to 0.10.2 --- 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 caa71f03..0afa7ccc 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.10.2] - 2021-04-21 +- Don't reference `derive_builder_core` from `derive_builder` #206 + ## [0.10.1] - 2021-04-20 - Don't reference `std` in no_std contexts #204 diff --git a/derive_builder/Cargo.toml b/derive_builder/Cargo.toml index 808d87ad..0688b5d1 100644 --- a/derive_builder/Cargo.toml +++ b/derive_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder" -version = "0.10.1" +version = "0.10.2" 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.10.1" +documentation = "https://docs.rs/derive_builder/0.10.2" 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.10.1", path = "../derive_builder_macro" } +derive_builder_macro = { version = "=0.10.2", 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 2a9e772e..4c900919 100644 --- a/derive_builder_core/Cargo.toml +++ b/derive_builder_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_core" -version = "0.10.1" +version = "0.10.2" authors = ["Colin Kiegel ", "Pascal Hertleif ", "Jan-Erik Rediger ", diff --git a/derive_builder_macro/Cargo.toml b/derive_builder_macro/Cargo.toml index 4cce37ee..fb59be93 100644 --- a/derive_builder_macro/Cargo.toml +++ b/derive_builder_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive_builder_macro" -version = "0.10.1" +version = "0.10.2" 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.10.1" +documentation = "https://docs.rs/derive_builder_macro/0.10.2" license = "MIT/Apache-2.0" categories = ["development-tools", "rust-patterns"] @@ -23,4 +23,4 @@ clippy = ["derive_builder_core/clippy"] [dependencies] syn = { version = "1.0.58", features = ["full", "extra-traits"] } -derive_builder_core = { version = "=0.10.1", path = "../derive_builder_core" } +derive_builder_core = { version = "=0.10.2", path = "../derive_builder_core" }