diff --git a/Cargo.toml b/Cargo.toml index e17b07bd2..a8f2e2b2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,4 +23,3 @@ codegen-units = 1 orchard = { git = "https://github.com/zcash/orchard.git", rev = "4b0b32275fe941b28cdfe632d2748453e6c32fbb" } incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "b7bd6246122a6e9ace8edb51553fbf5228906cbb" } zcash_encoding = { path = "components/zcash_encoding" } -zcash_note_encryption = { path = "components/zcash_note_encryption" } diff --git a/components/zcash_note_encryption/CHANGELOG.md b/components/zcash_note_encryption/CHANGELOG.md new file mode 100644 index 000000000..5dd6dae9c --- /dev/null +++ b/components/zcash_note_encryption/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog +All notable changes to this library will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this library adheres to Rust's notion of +[Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0] - 2021-12-17 +Initial release. diff --git a/components/zcash_note_encryption/Cargo.toml b/components/zcash_note_encryption/Cargo.toml index 01d3939af..9b302a282 100644 --- a/components/zcash_note_encryption/Cargo.toml +++ b/components/zcash_note_encryption/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zcash_note_encryption" description = "Note encryption for Zcash transactions" -version = "0.0.0" +version = "0.1.0" authors = [ "Jack Grigg ", "Kris Nuttycombe " diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 3625f8cd7..e096cd4a7 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -28,7 +28,7 @@ protobuf = "2.20" rand_core = "0.6" subtle = "2.2.3" time = "0.2" -zcash_note_encryption = { version = "0.0", path = "../components/zcash_note_encryption" } +zcash_note_encryption = { version = "0.1", path = "../components/zcash_note_encryption" } zcash_primitives = { version = "0.5", path = "../zcash_primitives" } [build-dependencies] diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index c6de784a8..42f43bd45 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -47,7 +47,7 @@ subtle = "2.2.3" zcash_encoding = { version = "0.0", path = "../components/zcash_encoding" } [dependencies.zcash_note_encryption] -version = "0.0" +version = "0.1" path = "../components/zcash_note_encryption" features = ["pre-zip-212"]