From e66e87fe3e4d90a10dda9fe74d2b673105d75ca2 Mon Sep 17 00:00:00 2001 From: Hiroaki Yutani Date: Sat, 13 Apr 2024 17:10:30 +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 dea1a8bf..d4cf62aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.5.1] (2024-04-13) + ### New features * An experimental new subcommand `savvy-cli test` runs tests by wrapping the @@ -424,7 +426,8 @@ * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.5.1...HEAD +[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 [v0.4.1]: https://github.com/yutannihilation/savvy/compare/v0.4.0...v0.4.1 diff --git a/Cargo.toml b/Cargo.toml index 2715f785..ef835d36 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.5.0", path = "./savvy-ffi" } -savvy-macro = { version = "0.5.0", path = "./savvy-macro" } +savvy-ffi = { version = "0.5.1", path = "./savvy-ffi" } +savvy-macro = { version = "0.5.1", 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.0" +version = "0.5.1" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index 20cdf3e5..25bba3d6 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.0", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.5.1", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"