Skip to content

Commit 15ba883

Browse files
committed
Bump version to 0.20.0
1 parent e567abf commit 15ba883

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

derive_builder/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.20.0] - 2024-02-14
6+
- Bump `syn` to version 2 #308
7+
- Bump `darling` to version 0.20.6 #308
8+
- **BREAKING CHANGE**: Remove support for `field(type = "...")` as `syn` no longer allows this. #308
9+
- Allow omitting quotes on `builder(default = ...)` expressions #308
10+
511
## [0.13.1] - 2024-02-12
612
- 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
713

derive_builder/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_builder"
3-
version = "0.13.1"
3+
version = "0.20.0"
44
authors = [
55
"Colin Kiegel <kiegel@gmx.de>",
66
"Pascal Hertleif <killercup@gmail.com>",
@@ -11,7 +11,7 @@ edition = "2018"
1111

1212
description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
1313
repository = "https://github.com/colin-kiegel/rust-derive-builder"
14-
documentation = "https://docs.rs/derive_builder/0.13.1"
14+
documentation = "https://docs.rs/derive_builder/0.20.0"
1515

1616
license = "MIT OR Apache-2.0"
1717
categories = ["development-tools", "rust-patterns"]
@@ -25,7 +25,7 @@ clippy = ["derive_builder_macro/clippy"]
2525
alloc = ["derive_builder_macro/alloc"]
2626

2727
[dependencies]
28-
derive_builder_macro = { version = "=0.13.1", path = "../derive_builder_macro" }
28+
derive_builder_macro = { version = "=0.20.0", path = "../derive_builder_macro" }
2929

3030
[dev-dependencies]
3131
pretty_assertions = "0.6.1"

derive_builder_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_builder_core"
3-
version = "0.13.1"
3+
version = "0.20.0"
44
authors = [
55
"Colin Kiegel <kiegel@gmx.de>",
66
"Pascal Hertleif <killercup@gmail.com>",

derive_builder_macro/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_builder_macro"
3-
version = "0.13.1"
3+
version = "0.20.0"
44
authors = [
55
"Colin Kiegel <kiegel@gmx.de>",
66
"Pascal Hertleif <killercup@gmail.com>",
@@ -11,7 +11,7 @@ edition = "2018"
1111

1212
description = "Rust macro to automatically implement the builder pattern for arbitrary structs."
1313
repository = "https://github.com/colin-kiegel/rust-derive-builder"
14-
documentation = "https://docs.rs/derive_builder_macro/0.13.1"
14+
documentation = "https://docs.rs/derive_builder_macro/0.20.0"
1515

1616
license = "MIT OR Apache-2.0"
1717
categories = ["development-tools", "rust-patterns"]
@@ -27,5 +27,5 @@ clippy = ["derive_builder_core/clippy"]
2727
lib_has_std = ["derive_builder_core/lib_has_std"]
2828

2929
[dependencies]
30-
derive_builder_core = { version = "=0.13.1", path = "../derive_builder_core" }
30+
derive_builder_core = { version = "=0.20.0", path = "../derive_builder_core" }
3131
syn = { version = "2.0.15", features = ["full", "extra-traits"] }

0 commit comments

Comments
 (0)