Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
yutannihilation committed Oct 21, 2024
1 parent db7cfbc commit edd2877
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<!-- next-header -->
## [Unreleased] (ReleaseDate)

## [v0.7.1] (2024-10-21)

### Bug fixes

* `NumericScalar::as_usize()` and `NumericSexp::iter_usize()` now fail if the
Expand Down Expand Up @@ -774,7 +776,8 @@ usize_to_string_scalar(2147483648)
* `#[savvy]` now accepts `savvy::Sexp` as input.

<!-- next-url -->
[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/yutannihilation/savvy/compare/v0.7.1...HEAD
[v0.7.1]: https://github.com/yutannihilation/savvy/compare/v0.7.0...v0.7.1
[v0.7.0]: https://github.com/yutannihilation/savvy/compare/v0.6.8...v0.7.0
[v0.6.8]: https://github.com/yutannihilation/savvy/compare/v0.6.7...v0.6.8
[v0.6.7]: https://github.com/yutannihilation/savvy/compare/v0.6.6...v0.6.7
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ exclude = ["/book", "/R-package", "README.qmd"]
rust-version = "1.65.0"

[dependencies]
savvy-ffi = { version = "0.7.0", path = "./savvy-ffi" }
savvy-macro = { version = "0.7.0", path = "./savvy-macro" }
savvy-ffi = { version = "0.7.1", path = "./savvy-ffi" }
savvy-macro = { version = "0.7.1", path = "./savvy-macro" }
once_cell = "1"
num-complex = { version = "0.4.5", optional = true }

Expand Down Expand Up @@ -63,7 +63,7 @@ members = ["savvy-macro", "savvy-bindgen", "savvy-cli", "savvy-ffi", "xtask"]
resolver = "2"

[workspace.package]
version = "0.7.0"
version = "0.7.1"
edition = "2021"
authors = ["Hiroaki Yutani"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion savvy-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ clap = { version = "4", features = ["derive"] }
async-process = "2"
futures-lite = "2"

savvy-bindgen = { version = "0.7.0", path = "../savvy-bindgen", features = [
savvy-bindgen = { version = "0.7.1", path = "../savvy-bindgen", features = [
"use_formatter",
] }
dirs = "5"
Expand Down
2 changes: 1 addition & 1 deletion savvy-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }

savvy-bindgen = { version = "0.7.0", path = "../savvy-bindgen" }
savvy-bindgen = { version = "0.7.1", path = "../savvy-bindgen" }

[dev-dependencies]
trybuild = "1"
Expand Down

0 comments on commit edd2877

Please sign in to comment.