Skip to content

Commit

Permalink
Bump version to 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Feb 12, 2024
1 parent 977d023 commit 213dd7d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 22 deletions.
4 changes: 2 additions & 2 deletions derive_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
- Accept `field(ty = "...")` as an alias for `field(type = "...")` in preparation for moving to syn 2.0, which doesn't allow the use of keywords as meta item paths.
## [0.13.1] - 2024-02-12
- Accept `field(ty = "...")` as an alias for `field(type = "...")` in preparation for moving to syn 2.0, which doesn't allow the use of keywords as meta item paths. #306

## [0.13.0] - 2024-01-22
- Bump MSRV to 1.56.0
Expand Down
18 changes: 10 additions & 8 deletions derive_builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "derive_builder"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>"]
version = "0.13.1"
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.13.0"
documentation = "https://docs.rs/derive_builder/0.13.1"

license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -22,7 +24,7 @@ clippy = ["derive_builder_macro/clippy"]
alloc = ["derive_builder_macro/alloc"]

[dependencies]
derive_builder_macro = { version = "=0.13.0", path = "../derive_builder_macro" }
derive_builder_macro = { version = "=0.13.1", path = "../derive_builder_macro" }

[dev-dependencies]
pretty_assertions = "0.6.1"
Expand All @@ -31,4 +33,4 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"

[target.'cfg(compiletests)'.dev-dependencies]
trybuild = "1.0.38"
trybuild = "1.0.38"
12 changes: 7 additions & 5 deletions derive_builder_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[package]
name = "derive_builder_core"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>"]
version = "0.13.1"
authors = [
"Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>",
]

description = "Internal helper library for the derive_builder crate."
repository = "https://github.com/colin-kiegel/rust-derive-builder"
Expand Down
16 changes: 9 additions & 7 deletions derive_builder_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "derive_builder_macro"
version = "0.13.0"
authors = ["Colin Kiegel <kiegel@gmx.de>",
"Pascal Hertleif <killercup@gmail.com>",
"Jan-Erik Rediger <janerik@fnordig.de>",
"Ted Driggs <ted.driggs@outlook.com>"]
version = "0.13.1"
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.13.0"
documentation = "https://docs.rs/derive_builder_macro/0.13.1"

license = "MIT OR Apache-2.0"
categories = ["development-tools", "rust-patterns"]
Expand All @@ -25,4 +27,4 @@ lib_has_std = ["derive_builder_core/lib_has_std"]

[dependencies]
syn = { version = "1.0.91", features = ["full", "extra-traits"] }
derive_builder_core = { version = "=0.13.0", path = "../derive_builder_core" }
derive_builder_core = { version = "=0.13.1", path = "../derive_builder_core" }

0 comments on commit 213dd7d

Please sign in to comment.