Skip to content

Commit

Permalink
v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-kiegel committed Apr 12, 2017
1 parent 29f6ec2 commit 9dc3b2c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion 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.4] - 2017-04-12

### Added
- try_setters, e.g. `#[builder(try_setter)]`. These setters are exposed
Expand Down Expand Up @@ -102,6 +102,7 @@ Requires Rust 1.15 or newer.
- support for generic structs

[Unreleased]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.0...HEAD
[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
[0.4.1]: https://github.com/colin-kiegel/rust-derive-builder/compare/v0.4.0...v0.4.1
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.3"
version = "0.4.4"
authors = ["Colin Kiegel <[email protected]>",
"Pascal Hertleif <[email protected]>",
"Jan-Erik Rediger <[email protected]>"]
Expand Down
3 changes: 1 addition & 2 deletions derive_builder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,7 @@
//!
//! # #[cfg(feature = "nightlytests")]
//! IpsumBuilder::default()
//! .try_foo(1u16)
//! .unwrap()
//! .try_foo(1u16).unwrap()
//! .build()
//! .expect("1 fits into a u8");
//! }
Expand Down
5 changes: 5 additions & 0 deletions derive_builder_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
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

### Added
- try_setters

## 0.1.3 - 2017-04-11

### Fixed
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.3"
version = "0.1.4"
authors = ["Colin Kiegel <[email protected]>",
"Pascal Hertleif <[email protected]>",
"Jan-Erik Rediger <[email protected]>"]
Expand Down

0 comments on commit 9dc3b2c

Please sign in to comment.