From bf8c6650a4ece595f539914c8e3fac3acaddd17d Mon Sep 17 00:00:00 2001 From: xevisalle Date: Wed, 18 Dec 2024 15:44:15 +0100 Subject: [PATCH 1/3] core: Bump to v0.33.0 --- core/CHANGELOG.md | 11 ++++------- core/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index f4db5af..1fc8cfa 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -7,11 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Changed - -- Compute AES key using HKDF [#261] - -## [0.32.1] - 2024-12-17 +## [0.33.0] - 2024-12-18 ### Added @@ -25,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Call `gen_note_sk` in `SecretKey::owns` to avoid code duplication [#246] - `ViewKey` now checks both `a` and `B` in `ct_eq()` +- Compute AES key using HKDF [#261] ### Removed @@ -449,8 +446,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#61]: https://github.com/dusk-network/phoenix/issues/61 -[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.32.1...HEAD -[0.32.1]: https://github.com/dusk-network/phoenix/compare/v0.32.0...v0.32.1 +[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.33.0...HEAD +[0.33.0]: https://github.com/dusk-network/phoenix/compare/v0.32.0...v0.33.0 [0.32.0]: https://github.com/dusk-network/phoenix/compare/v0.31.0...v0.32.0 [0.31.0]: https://github.com/dusk-network/phoenix/compare/v0.30.0...v0.31.0 [0.30.0]: https://github.com/dusk-network/phoenix/compare/v0.29.0...v0.30.0 diff --git a/core/Cargo.toml b/core/Cargo.toml index a6006c1..ba10d06 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "phoenix-core" -version = "0.32.1" +version = "0.33.0" edition = "2021" repository = "https://github.com/dusk-network/phoenix/core" description = "Core types and functionalities for Phoenix, a privacy-preserving ZKP-based transaction model" From 4ad116c881b26e07eda9d8608ea6fc59d915cfd6 Mon Sep 17 00:00:00 2001 From: xevisalle Date: Wed, 18 Dec 2024 15:49:17 +0100 Subject: [PATCH 2/3] circuits: Update phoenix-core to v0.33 --- circuits/CHANGELOG.md | 4 ++++ circuits/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/circuits/CHANGELOG.md b/circuits/CHANGELOG.md index ca9d249..af6f42b 100644 --- a/circuits/CHANGELOG.md +++ b/circuits/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add jubjub-elgamal dependency [#255] +### Changed + +- Update phoenix-core to v0.33 + ### Removed - Remove elgamal encryption module [#255] diff --git a/circuits/Cargo.toml b/circuits/Cargo.toml index d76730b..0b0b30d 100644 --- a/circuits/Cargo.toml +++ b/circuits/Cargo.toml @@ -11,7 +11,7 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"] [dependencies] dusk-bytes = "0.1" -phoenix-core = { version = "0.32", default-features = false, path = "../core" } +phoenix-core = { version = "0.33", default-features = false, path = "../core" } dusk-bls12_381 = { version = "0.13", default-features = false } dusk-jubjub = { version = "0.14", default-features = false } poseidon-merkle = "0.7" From 0da5abfcad43ddbcc400a4c31dad18f3f4bf5f12 Mon Sep 17 00:00:00 2001 From: xevisalle Date: Wed, 18 Dec 2024 16:02:14 +0100 Subject: [PATCH 3/3] circuits: Bump to v0.5.0 --- circuits/CHANGELOG.md | 5 ++++- circuits/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/circuits/CHANGELOG.md b/circuits/CHANGELOG.md index af6f42b..703715d 100644 --- a/circuits/CHANGELOG.md +++ b/circuits/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] - 2024-12-18 + ### Added - Add jubjub-elgamal dependency [#255] @@ -129,7 +131,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#169]: https://github.com/dusk-network/phoenix/issues/169 -[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.4.0...HEAD +[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.5.0...HEAD +[0.5.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.4.0...circuits_v0.5.0 [0.4.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.3.0...circuits_v0.4.0 [0.3.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...circuits_v0.3.0 [0.2.1]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.0...circuits_v0.2.1 diff --git a/circuits/Cargo.toml b/circuits/Cargo.toml index 0b0b30d..772ffa5 100644 --- a/circuits/Cargo.toml +++ b/circuits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "phoenix-circuits" -version = "0.4.0" +version = "0.5.0" edition = "2021" repository = "https://github.com/dusk-network/phoenix/circuits" description = "Circuit definitions for Phoenix, a privacy-preserving ZKP-based transaction model"