Skip to content

Commit fc18dd2

Browse files
committed
Bump version to 0.20.2
1 parent b809d0e commit fc18dd2

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

derive_builder/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
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.2] - 2024-10-08
6+
- Allow unquoted expressions in `builder(default = ...)` #331
7+
58
## [0.20.1] - 2024-08-28
69
- Forward default type params #319
710

811
## [0.20.0] - 2024-02-14
912
- Bump `syn` to version 2 #308
1013
- Bump `darling` to version 0.20.6 #308
1114
- **BREAKING CHANGE**: Remove support for `field(type = "...")` as `syn` no longer allows this. #308
12-
- Allow omitting quotes on `builder(default = ...)` expressions #308
15+
- ~~Allow omitting quotes on `builder(default = ...)` expressions #308~~ _See #331_
1316

1417
## [0.13.1] - 2024-02-12
1518
- 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

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.20.1"
3+
version = "0.20.2"
44
authors = [
55
"Colin Kiegel <[email protected]>",
66
"Pascal Hertleif <[email protected]>",
@@ -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.20.1"
14+
documentation = "https://docs.rs/derive_builder/0.20.2"
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.20.1", path = "../derive_builder_macro" }
28+
derive_builder_macro = { version = "=0.20.2", path = "../derive_builder_macro" }
2929

3030
[dev-dependencies]
3131
rustversion = "1.0.4"

derive_builder_core/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_builder_core"
3-
version = "0.20.1"
3+
version = "0.20.2"
44
authors = [
55
"Colin Kiegel <[email protected]>",
66
"Pascal Hertleif <[email protected]>",
@@ -25,4 +25,3 @@ darling = "0.20.10"
2525
proc-macro2 = "1.0.37"
2626
quote = "1.0.35"
2727
syn = { version = "2.0.15", features = ["full", "extra-traits"] }
28-

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.20.1"
3+
version = "0.20.2"
44
authors = [
55
"Colin Kiegel <[email protected]>",
66
"Pascal Hertleif <[email protected]>",
@@ -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.20.1"
14+
documentation = "https://docs.rs/derive_builder_macro/0.20.2"
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.20.1", path = "../derive_builder_core" }
30+
derive_builder_core = { version = "=0.20.2", path = "../derive_builder_core" }
3131
syn = { version = "2.0.15", features = ["full", "extra-traits"] }

0 commit comments

Comments
 (0)