Skip to content

Commit e2e7d2e

Browse files
authored
Merge pull request #262 from dusk-network/release-0.33
Bump core and circuits
2 parents 434ded6 + 0da5abf commit e2e7d2e

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

circuits/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0] - 2024-12-18
11+
1012
### Added
1113

1214
- Add jubjub-elgamal dependency [#255]
1315

16+
### Changed
17+
18+
- Update phoenix-core to v0.33
19+
1420
### Removed
1521

1622
- Remove elgamal encryption module [#255]
@@ -125,7 +131,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
125131
[#169]: https://github.com/dusk-network/phoenix/issues/169
126132

127133
<!-- VERSIONS -->
128-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.4.0...HEAD
134+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.5.0...HEAD
135+
[0.5.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.4.0...circuits_v0.5.0
129136
[0.4.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.3.0...circuits_v0.4.0
130137
[0.3.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...circuits_v0.3.0
131138
[0.2.1]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.0...circuits_v0.2.1

circuits/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phoenix-circuits"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
repository = "https://github.com/dusk-network/phoenix/circuits"
66
description = "Circuit definitions for Phoenix, a privacy-preserving ZKP-based transaction model"
@@ -11,7 +11,7 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"]
1111

1212
[dependencies]
1313
dusk-bytes = "0.1"
14-
phoenix-core = { version = "0.32", default-features = false, path = "../core" }
14+
phoenix-core = { version = "0.33", default-features = false, path = "../core" }
1515
dusk-bls12_381 = { version = "0.13", default-features = false }
1616
dusk-jubjub = { version = "0.14", default-features = false }
1717
poseidon-merkle = "0.7"

core/CHANGELOG.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
### Changed
11-
12-
- Compute AES key using HKDF [#261]
13-
14-
## [0.32.1] - 2024-12-17
10+
## [0.33.0] - 2024-12-18
1511

1612
### Added
1713

@@ -25,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2521

2622
- Call `gen_note_sk` in `SecretKey::owns` to avoid code duplication [#246]
2723
- `ViewKey` now checks both `a` and `B` in `ct_eq()`
24+
- Compute AES key using HKDF [#261]
2825

2926
### Removed
3027

@@ -449,8 +446,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
449446
[#61]: https://github.com/dusk-network/phoenix/issues/61
450447

451448
<!-- VERSIONS -->
452-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.32.1...HEAD
453-
[0.32.1]: https://github.com/dusk-network/phoenix/compare/v0.32.0...v0.32.1
449+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.33.0...HEAD
450+
[0.33.0]: https://github.com/dusk-network/phoenix/compare/v0.32.0...v0.33.0
454451
[0.32.0]: https://github.com/dusk-network/phoenix/compare/v0.31.0...v0.32.0
455452
[0.31.0]: https://github.com/dusk-network/phoenix/compare/v0.30.0...v0.31.0
456453
[0.30.0]: https://github.com/dusk-network/phoenix/compare/v0.29.0...v0.30.0

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phoenix-core"
3-
version = "0.32.1"
3+
version = "0.33.0"
44
edition = "2021"
55
repository = "https://github.com/dusk-network/phoenix/core"
66
description = "Core types and functionalities for Phoenix, a privacy-preserving ZKP-based transaction model"

0 commit comments

Comments
 (0)