From 09de5257d0b0edc34290972001719c8dafcf6217 Mon Sep 17 00:00:00 2001 From: Mike Foster Date: Tue, 1 Sep 2026 10:40:22 +0000 Subject: [PATCH 1/4] build_safely --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0afa5ea..a76dc23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,4 +20,4 @@ try_v2_derive = { path = "crates/try_v2_derive", version = "0.10.1" } try_v2_traits = { path = "crates/try_v2_traits", version = "0.10.1" } autocfg = "1.5.1" -build_safely = "0.5.1" +build_safely = "0.5.4" From 926b2d80ca047a7811c725dfad4c5a0d7f679cd1 Mon Sep 17 00:00:00 2001 From: Mike Foster Date: Tue, 1 Sep 2026 10:57:00 +0000 Subject: [PATCH 2/4] syn 3.0 & proc_macro2_diagnostic 0.8 --- crates/try_v2_derive/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/try_v2_derive/Cargo.toml b/crates/try_v2_derive/Cargo.toml index fabd962..687b59a 100644 --- a/crates/try_v2_derive/Cargo.toml +++ b/crates/try_v2_derive/Cargo.toml @@ -17,9 +17,9 @@ exclude.workspace = true proc-macro = true [dependencies] -syn = { version = "2.0.117", features = ["full", "extra-traits"] } +syn = { version = "3.0.4", features = ["full", "extra-traits"] } proc-macro2 = "1.0.106" -proc_macro2_diagnostic = "0.7.0" +proc_macro2_diagnostic = "0.8.0" quote = "1.0.45" [dev-dependencies] From 028c5a1ea5c3039c1dfb09927afde7a5b0d12714 Mon Sep 17 00:00:00 2001 From: Mike Foster Date: Tue, 1 Sep 2026 10:58:33 +0000 Subject: [PATCH 3/4] v bump --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e02992..04d1b96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog try_v2 +## [v0.11.0] + +### Breaking change + +- Update to `syn` v3 + ## [v0.10.1] ### Bugfix diff --git a/Cargo.toml b/Cargo.toml index a76dc23..93ac0a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "3" members = ["crates/*"] [workspace.package] -version = "0.10.1" +version = "0.11.0" edition = "2024" readme = "README.md" authors = ["Mike Foster "] From f9ea2e2c7870ee395d8bf4485bfdbbf004814fe0 Mon Sep 17 00:00:00 2001 From: Mike Foster Date: Tue, 1 Sep 2026 11:00:00 +0000 Subject: [PATCH 4/4] fixup! v bump --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 93ac0a0..9e19351 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ rust-version = "1.93.1" exclude = [".github", ".devcontainer"] [workspace.dependencies] -try_v2_derive = { path = "crates/try_v2_derive", version = "0.10.1" } -try_v2_traits = { path = "crates/try_v2_traits", version = "0.10.1" } +try_v2_derive = { path = "crates/try_v2_derive", version = "0.11.0" } +try_v2_traits = { path = "crates/try_v2_traits", version = "0.11.0" } autocfg = "1.5.1" build_safely = "0.5.4"