diff --git a/CHANGELOG.md b/CHANGELOG.md index b78a882..398b0f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.8.1] (2024-11-17) + ### Bug fixes * Now a package generated by `savvy init` doesn't ignore `.cargo`. @@ -832,7 +834,8 @@ usize_to_string_scalar(2147483648) * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.8.1...HEAD +[v0.8.1]: https://github.com/yutannihilation/savvy/compare/v0.8.0...v0.8.1 [v0.8.0]: https://github.com/yutannihilation/savvy/compare/v0.7.2...v0.8.0 [v0.7.2]: https://github.com/yutannihilation/savvy/compare/v0.7.1...v0.7.2 [v0.7.1]: https://github.com/yutannihilation/savvy/compare/v0.7.0...v0.7.1 diff --git a/Cargo.toml b/Cargo.toml index 6dabc93..44c6d65 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.8.0", path = "./savvy-ffi" } -savvy-macro = { version = "0.8.0", path = "./savvy-macro" } +savvy-ffi = { version = "0.8.1", path = "./savvy-ffi" } +savvy-macro = { version = "0.8.1", path = "./savvy-macro" } once_cell = "1" num-complex = { version = "0.4.5", optional = true } @@ -69,7 +69,7 @@ members = ["savvy-macro", "savvy-bindgen", "savvy-cli", "savvy-ffi", "xtask"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-cli/Cargo.toml b/savvy-cli/Cargo.toml index 2d35c51..56aa080 100644 --- a/savvy-cli/Cargo.toml +++ b/savvy-cli/Cargo.toml @@ -19,7 +19,7 @@ clap = { version = "4", features = ["derive"] } async-process = "2" futures-lite = "2" -savvy-bindgen = { version = "0.8.0", path = "../savvy-bindgen", features = [ +savvy-bindgen = { version = "0.8.1", path = "../savvy-bindgen", features = [ "use_formatter", ] } dirs = "5" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index a2c2807..6af2c9e 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.8.0", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.8.1", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"