From 044df8ad8478725d916889e8c51d0b0e9557c74e Mon Sep 17 00:00:00 2001 From: Hiroaki Yutani Date: Tue, 2 Jul 2024 14:49:05 +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 8f18e52..cfca69a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.6.5] (2024-07-02) + ### New features * Add support for raw, including ALTRAW. @@ -683,7 +685,8 @@ * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.6.4...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.6.5...HEAD +[v0.6.5]: https://github.com/yutannihilation/savvy/compare/v0.6.4...v0.6.5 [v0.6.4]: https://github.com/yutannihilation/savvy/compare/v0.6.3...v0.6.4 [v0.6.3]: https://github.com/yutannihilation/savvy/compare/v0.6.2...v0.6.3 [v0.6.2]: https://github.com/yutannihilation/savvy/compare/v0.6.1...v0.6.2 diff --git a/Cargo.toml b/Cargo.toml index a2f1b4f..d4fb428 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.6.4", path = "./savvy-ffi" } -savvy-macro = { version = "0.6.4", path = "./savvy-macro" } +savvy-ffi = { version = "0.6.5", path = "./savvy-ffi" } +savvy-macro = { version = "0.6.5", path = "./savvy-macro" } once_cell = "1" num-complex = { version = "0.4.5", optional = true } @@ -62,7 +62,7 @@ members = ["savvy-macro", "savvy-bindgen", "savvy-cli", "savvy-ffi", "xtask"] resolver = "2" [workspace.package] -version = "0.6.4" +version = "0.6.5" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index ed493e2..3841f50 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.6.4", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.6.5", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"