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 0afa5ea..9e19351 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 "] @@ -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.1" +build_safely = "0.5.4" 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]