Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump core and circuits #262

Merged
merged 3 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion circuits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ 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]

### Changed

- Update phoenix-core to v0.33

### Removed

- Remove elgamal encryption module [#255]
Expand Down Expand Up @@ -125,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

<!-- VERSIONS -->
[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
Expand Down
4 changes: 2 additions & 2 deletions circuits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
11 changes: 4 additions & 7 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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

<!-- VERSIONS -->
[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
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down