Create the v0.1.14 release - 2nd attempt (#110)

* update the changelog

* chore: Release zcash_script version 0.1.14

* remove duplicated
This commit is contained in:
Alfredo Garcia 2023-10-18 15:39:20 -03:00 committed by GitHub
parent 4f678c97f5
commit 6c2eb13d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 5 deletions

View File

@ -8,7 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.1.13] - 2023-07-05
## [0.1.14] - 2023-10-18
### Changed
- Update `depend/zcash` to version 5.7.0 which includes updated dependencies
- Update other dependencies to match Zebra
- Update the `build.rs` to handle subdirs
## [0.1.13] - 2023-06-29
@ -89,7 +95,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated `bindgen` to a non yanked version
<!-- next-url -->
[Unreleased]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.13...HEAD
[Unreleased]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.14...HEAD
[0.1.14]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.14...v0.1.14
[0.1.14]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.13...v0.1.14
[0.1.13]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.12...v0.1.13
[0.1.12]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.11...v0.1.12
[0.1.11]: https://github.com/ZcashFoundation/zcash_script/compare/v0.1.10...v0.1.11

2
Cargo.lock generated
View File

@ -1842,7 +1842,7 @@ dependencies = [
[[package]]
name = "zcash_script"
version = "0.1.13"
version = "0.1.14"
dependencies = [
"bellman",
"bindgen",

View File

@ -1,6 +1,6 @@
[package]
name = "zcash_script"
version = "0.1.13"
version = "0.1.14"
authors = ["Tamas Blummer <tamas.blummer@gmail.com>", "Zcash Foundation <zebra@zfnd.org>"]
license = "Apache-2.0"
readme = "README.md"

View File

@ -1,7 +1,7 @@
//! Rust bindings for Zcash transparent scripts.
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
#![doc(html_root_url = "https://docs.rs/zcash_script/0.1.13")]
#![doc(html_root_url = "https://docs.rs/zcash_script/0.1.14")]
#![allow(missing_docs)]
#![allow(clippy::needless_lifetimes)]
#![allow(non_upper_case_globals)]