Skip to content

Commit d8ba7e9

Browse files
authored
Merge pull request #242 from dusk-network/release
Release core v0.31.0 and circuits v0.3.0
2 parents dc14c2f + bf814b6 commit d8ba7e9

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.3.0] - 2024-08-14
11+
1012
### Removed
1113

1214
- Delete `TxInputNoteWitness` struct [#229]
@@ -105,7 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
105107
[#169]: https://github.com/dusk-network/phoenix/issues/169
106108

107109
<!-- VERSIONS -->
108-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...HEAD
110+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.3.0...HEAD
111+
[0.3.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...circuits_v0.3.0
109112
[0.2.1]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.0...circuits_v0.2.1
110113
[0.2.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.1.0...circuits_v0.2.0
111114
[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.3.0-rc.0"
3+
version = "0.3.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.31.0-rc.0", default-features = false, path = "../core" }
14+
phoenix-core = { version = "0.31", 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 = { version = "0.6" }

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.31.0] - 2024-08-14
11+
1012
### Added
1113

1214
- impl `Eq` for `StealthAddress`
@@ -414,7 +416,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
414416
[#61]: https://github.com/dusk-network/phoenix/issues/61
415417

416418
<!-- VERSIONS -->
417-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.30.0...HEAD
419+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/v0.31.0...HEAD
420+
[0.31.0]: https://github.com/dusk-network/phoenix/compare/v0.30.0...v0.31.0
418421
[0.30.0]: https://github.com/dusk-network/phoenix/compare/v0.29.0...v0.30.0
419422
[0.29.0]: https://github.com/dusk-network/phoenix/compare/v0.28.1...v0.29.0
420423
[0.28.1]: https://github.com/dusk-network/phoenix/compare/v0.28.0...v0.28.1

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.31.0-rc.0"
3+
version = "0.31.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)