Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
Being conservative with the version number to avoid unexpected breakages
from dependency changes.
  • Loading branch information
TedDriggs committed Mar 15, 2022
1 parent f0aebdd commit f7e6c71
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion derive_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.11.0] - 2022-03-15
- Support shorthand and long-form collection setters; `#[builder(setter(each = "..."))]` and `#[builder(setter(each(name = "...")))]` #234
- Allow collection setters to be generic over `Into` using `#[builder(setter(each(name = "...", into)))] #234 and #214
- Allow specifying attributes for builder fields and setters using `#[builder_field_attr(...)]` and `#[builder_setter_attr(...)]` #237

## [0.10.2] - 2021-04-21
- Don't reference `derive_builder_core` from `derive_builder` #206
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.10.2"
version = "0.11.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.10.2"
documentation = "https://docs.rs/derive_builder/0.11.0"

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

[dependencies]
derive_builder_macro = { version = "=0.10.2", path = "../derive_builder_macro" }
derive_builder_macro = { version = "=0.11.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.10.2"
version = "0.11.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.10.2"
version = "0.11.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.10.2"
documentation = "https://docs.rs/derive_builder_macro/0.11.0"

license = "MIT/Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -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.2", path = "../derive_builder_core" }
derive_builder_core = { version = "=0.11.0", path = "../derive_builder_core" }

0 comments on commit f7e6c71

Please sign in to comment.