Skip to content

Commit f4a8109

Browse files
authored
Merge pull request #227 from dusk-network/release
Release: core v0.30.0, circuits v0.2.1
2 parents ab1c340 + 1801eca commit f4a8109

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

circuits/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.1] - 2024-07-03
11+
1012
### Changed
1113

1214
- Make `TxInputNote` fields public
@@ -66,6 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6668
[#169]: https://github.com/dusk-network/phoenix/issues/169
6769

6870
<!-- VERSIONS -->
69-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.1.0...HEAD
71+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...HEAD
72+
[0.2.1]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.0...circuits_v0.2.1
7073
[0.2.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.1.0...circuits_v0.2.0
7174
[0.1.0]: https://github.com/dusk-network/phoenix/releases/tag/circuits_v0.1.0

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.2.1-rc.0"
3+
version = "0.2.1"
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"
@@ -10,7 +10,7 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"]
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
phoenix-core = { version = "0.30.0-rc", default-features = false, path = "../core" }
13+
phoenix-core = { version = "0.30", default-features = false, path = "../core" }
1414
dusk-plonk = { version = "0.19", default-features = false }
1515
dusk-jubjub = { version = "0.14", default-features = false }
1616
poseidon-merkle = { version = "0.6", features = ["rkyv-impl", "zk", "size_32"] }

core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.30.0] - 2024-07-03
11+
1012
### Added
1113

1214
- Add `Sender` struct [#222]
@@ -398,7 +400,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
398400
[#61]: https://github.com/dusk-network/phoenix/issues/61
399401

400402
<!-- VERSIONS -->
401-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.29.0...HEAD
403+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.30.0...HEAD
404+
[0.30.0]: https://github.com/dusk-network/phoenix/compare/v0.29.0...v0.30.0
402405
[0.29.0]: https://github.com/dusk-network/phoenix/compare/v0.28.1...v0.29.0
403406
[0.28.1]: https://github.com/dusk-network/phoenix/compare/v0.28.0...v0.28.1
404407
[0.28.0]: https://github.com/dusk-network/phoenix/compare/v0.27.0...v0.28.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.30.0-rc.0"
3+
version = "0.30.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)