diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c7636c..fe464770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## [Unreleased] (ReleaseDate) +## [v0.5.0] (2024-04-05) + ### Breaking change * To support enum properly (the details follow), now savvy requires to put @@ -413,7 +415,8 @@ * `#[savvy]` now accepts `savvy::Sexp` as input. -[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.4.2...HEAD +[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.5.0...HEAD +[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 [v0.4.0]: https://github.com/yutannihilation/savvy/compare/v0.3.0...v0.4.0 diff --git a/Cargo.toml b/Cargo.toml index 503fdea8..2715f785 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.4.2", path = "./savvy-ffi" } -savvy-macro = { version = "0.4.2", path = "./savvy-macro" } +savvy-ffi = { version = "0.5.0", path = "./savvy-ffi" } +savvy-macro = { version = "0.5.0", 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.4.2" +version = "0.5.0" edition = "2021" authors = ["Hiroaki Yutani"] license = "MIT" diff --git a/savvy-macro/Cargo.toml b/savvy-macro/Cargo.toml index 89eaebfc..20cdf3e5 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.4.2", path = "../savvy-bindgen" } +savvy-bindgen = { version = "0.5.0", path = "../savvy-bindgen" } [dev-dependencies] trybuild = "1"