Skip to content

Commit

Permalink
v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-kiegel committed Apr 25, 2017
1 parent 5fe8c53 commit 249c614
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
7 changes: 4 additions & 3 deletions derive_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.5] - 2017-04-25

### Added
- customize setter names via `#[builder(setter(name="..."))]`
Expand All @@ -13,7 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
`#[builder(field(private))]` at the field or struct level

### Deprecated
- Builder fields will no longer be public by default in 0.5.0; relying on this
- builder fields will no longer be public by default in 0.5.0; relying on this
will now emit a deprecation warning. Fields can be explicitly made public at
the struct or field level using the new `#[builder(field(public))]`
attribute. To squelch this warning and opt-into the new behaviour, use the
Expand Down Expand Up @@ -119,7 +119,8 @@ Requires Rust 1.15 or newer.
- generate setter methods
- support for generic structs

[Unreleased]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.4...HEAD
[Unreleased]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.5...HEAD
[0.4.5]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.1...v0.4.2
Expand Down
2 changes: 1 addition & 1 deletion derive_builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_builder"
version = "0.4.4"
version = "0.4.5"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
Expand Down
7 changes: 6 additions & 1 deletion derive_builder_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.4] - 2017-04-12
## 0.1.5 - 2017-04-25

### Added
- derive traits on builder struct

## 0.1.4 - 2017-04-12

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

0 comments on commit 249c614

Please sign in to comment.