diff --git a/CHANGELOG.md b/CHANGELOG.md index d7b4b584..c3c3aba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.2.20] (2024-03-23) + ## [v0.2.19] (2024-03-23) ### New Features @@ -172,7 +174,8 @@ * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.2.19...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.2.20...HEAD +[v0.2.20]: https://github.com/yutannihilation/savvy/compare/v0.2.19...v0.2.20 [v0.2.19]: https://github.com/yutannihilation/savvy/compare/v0.2.18...v0.2.19 [v0.2.18]: https://github.com/yutannihilation/savvy/compare/v0.2.17...v0.2.18 [v0.2.17]: https://github.com/yutannihilation/savvy/compare/v0.2.16...v0.2.17 diff --git a/Cargo.toml b/Cargo.toml index c3915941..4174a3f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ exclude = ["/book", "/R-package", "README.qmd"] rust-version = "1.64.0" [dependencies] -savvy-ffi = { version = "0.2.19", path = "./savvy-ffi" } -savvy-macro = { version = "0.2.19", path = "./savvy-macro" } +savvy-ffi = { version = "0.2.20", path = "./savvy-ffi" } +savvy-macro = { version = "0.2.20", path = "./savvy-macro" } once_cell = "1" [build-dependencies] @@ -41,7 +41,7 @@ members = ["savvy-macro", "savvy-bindgen", "savvy-cli", "savvy-ffi", "xtask"] resolver = "2" [workspace.package] -version = "0.2.19" +version = "0.2.20" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index dc06013f..ec928e00 100644 --- a/savvy-macro/Cargo.toml +++ b/savvy-macro/Cargo.toml @@ -17,7 +17,7 @@ proc-macro2 = "1" quote = "1" syn = { version = "2", features = ["full", "extra-traits"] } -savvy-bindgen = { version = "0.2.19", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.2.20", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"