Skip to content

Commit 94dcae2

Browse files
committed
circuits: Bump to v0.4.0
1 parent d274031 commit 94dcae2

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

circuits/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.0] - 2024-08-14
11+
12+
### Changed
13+
14+
- Update dusk-plonk to v0.20
15+
- Update dusk-poseidon to v0.40
16+
- Update jubjub-schnorr to v0.5
17+
- Update poseidon-merkle to v0.7
18+
1019
## [0.3.0] - 2024-08-14
1120

1221
### Removed
@@ -107,7 +116,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107116
[#169]: https://github.com/dusk-network/phoenix/issues/169
108117

109118
<!-- VERSIONS -->
110-
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.3.0...HEAD
119+
[Unreleased]: https://github.com/dusk-network/phoenix/compare/circuits_v0.4.0...HEAD
120+
[0.4.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.3.0...circuits_v0.4.0
111121
[0.3.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.1...circuits_v0.3.0
112122
[0.2.1]: https://github.com/dusk-network/phoenix/compare/circuits_v0.2.0...circuits_v0.2.1
113123
[0.2.0]: https://github.com/dusk-network/phoenix/compare/circuits_v0.1.0...circuits_v0.2.0

circuits/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phoenix-circuits"
3-
version = "0.3.0"
3+
version = "0.4.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,15 +11,15 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"]
1111

1212
[dependencies]
1313
dusk-bytes = "0.1"
14-
phoenix-core = { version = "0.31", default-features = false, path = "../core" }
14+
phoenix-core = { version = "0.32", default-features = false, path = "../core" }
1515
dusk-bls12_381 = { version = "0.13", default-features = false }
1616
dusk-jubjub = { version = "0.14", default-features = false }
17-
poseidon-merkle = { version = "0.6" }
18-
dusk-poseidon = { version = "0.39" }
19-
jubjub-schnorr = { version = "0.4" }
17+
poseidon-merkle = { version = "0.7" }
18+
dusk-poseidon = { version = "0.40" }
19+
jubjub-schnorr = { version = "0.5" }
2020
rkyv = { version = "0.7", default-features = false, optional = true }
2121
bytecheck = { version = "0.6", default-features = false, optional = true }
22-
dusk-plonk = { version = "0.19", default-features = false, optional = true }
22+
dusk-plonk = { version = "0.20", default-features = false, optional = true }
2323

2424
[dev-dependencies]
2525
lazy_static = "1.4"

0 commit comments

Comments
 (0)