bump to 0.3.0; attempt at using release-plz (#215)

This commit is contained in:
Conrado Gouvea 2025-05-13 16:08:43 -03:00 committed by GitHub
parent d3e242b47f
commit edf94cbf5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 19 additions and 2 deletions

View File

@ -8,6 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.3.0](https://github.com/ZcashFoundation/zcash_script/compare/v0.2.0...v0.3.0) - 2025-05-13
- Another major API update. The previous C++ functions were moved to the `cxx`
module. A new Rust implementation has been added. In the root of the
crate there are now "Intepreters" which allow choosing which implementation
to use.
- Eliminate `ScriptNum` ([#208](https://github.com/ZcashFoundation/zcash_script/pull/208))
- Add various stepwise functionality ([#204](https://github.com/ZcashFoundation/zcash_script/pull/204))
- Addressing post-hoc PR feedback on #174 ([#197](https://github.com/ZcashFoundation/zcash_script/pull/197))
- Expose `ScriptError` on C++ side ([#195](https://github.com/ZcashFoundation/zcash_script/pull/195))
- Change type of `lock_time` parameter ([#190](https://github.com/ZcashFoundation/zcash_script/pull/190))
- Initial Rust implementation ([#174](https://github.com/ZcashFoundation/zcash_script/pull/174))
- Add a basic rust-toolchain.toml ([#176](https://github.com/ZcashFoundation/zcash_script/pull/176))
- Address Str4ds comments on #171 ([#175](https://github.com/ZcashFoundation/zcash_script/pull/175))
- Provide a Rustier wrapper for zcash_script ([#171](https://github.com/ZcashFoundation/zcash_script/pull/171))
## [0.2.0] - 2024-06-10
- Major API update. Most functions have been removed and a new callback-based

2
Cargo.lock generated
View File

@ -776,7 +776,7 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zcash_script"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"bindgen",
"bitflags",

View File

@ -1,6 +1,6 @@
[package]
name = "zcash_script"
version = "0.2.0"
version = "0.3.0"
authors = [
"Electric Coin Company <info@electriccoin.co>",
"Greg Pfeil <greg@technomadic.org>",