From b3b9a492b448ce18ff76a3a9ea2e0633002302ec Mon Sep 17 00:00:00 2001 From: Hiroaki Yutani Date: Sun, 14 Apr 2024 22:17:02 +0900 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.toml | 6 +++--- savvy-macro/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9376f74..dd2baf00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.5.2] (2024-04-14) + ### New features * Now savvy's debug build (when `DEBUG` envvar is set to `true`, i.e., @@ -449,7 +451,8 @@ * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.5.1...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.5.2...HEAD +[v0.5.2]: https://github.com/yutannihilation/savvy/compare/v0.5.1...v0.5.2 [v0.5.1]: https://github.com/yutannihilation/savvy/compare/v0.5.0...v0.5.1 [v0.5.0]: https://github.com/yutannihilation/savvy/compare/v0.4.2...v0.5.0 [v0.4.2]: https://github.com/yutannihilation/savvy/compare/v0.4.1...v0.4.2 diff --git a/Cargo.toml b/Cargo.toml index 7ed3b2ef..afd513aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ exclude = ["/book", "/R-package", "README.qmd"] rust-version = "1.65.0" [dependencies] -savvy-ffi = { version = "0.5.1", path = "./savvy-ffi" } -savvy-macro = { version = "0.5.1", path = "./savvy-macro" } +savvy-ffi = { version = "0.5.2", path = "./savvy-ffi" } +savvy-macro = { version = "0.5.2", path = "./savvy-macro" } once_cell = "1" num-complex = { version = "0.4.5", optional = true } @@ -51,7 +51,7 @@ members = ["savvy-macro", "savvy-bindgen", "savvy-cli", "savvy-ffi", "xtask"] resolver = "2" [workspace.package] -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index 4a24a61e..057be3d1 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.5.1", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.5.2", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"