Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Nov 7, 2019
1 parent b4d8e69 commit 7c093c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions derive_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0] - 2019-11-07
- Add `setter(custom)` to allow implementing a custom setter #154

## [0.8.1] - 2019-10-30
- Increase `darling` dependency to 0.10.2 #153

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.8.1"
version = "0.9.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.8.1"
documentation = "https://docs.rs/derive_builder/0.9.0"

license = "MIT/Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -33,7 +33,7 @@ proc-macro2 = "1.0"
quote = "1.0"
log = { version = "0.4", optional = true }
env_logger = { version = "0.5", optional = true }
derive_builder_core = { version = "=0.8.1", path = "../derive_builder_core" }
derive_builder_core = { version = "=0.9.0", path = "../derive_builder_core" }
skeptic = { version = "0.13", optional = true }
compiletest_rs = { version = "0.3.18", optional = true }

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.8.1"
version = "0.9.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
Expand Down

0 comments on commit 7c093c1

Please sign in to comment.