From 88c35c7235b9078c586f022a9b8fb588f3868ddb Mon Sep 17 00:00:00 2001 From: moana Date: Wed, 3 Jul 2024 12:16:44 +0200 Subject: [PATCH] Bump to v0.12.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e951790..ad61eac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2024-07-03 + ### Changed - Update `jubjub-schnorr` dependency to "0.4" @@ -170,7 +172,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#21]: https://github.com/dusk-network/citadel/issues/21 -[Unreleased]: https://github.com/dusk-network/citadel/compare/v0.11.0...HEAD +[Unreleased]: https://github.com/dusk-network/citadel/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/dusk-network/citadel/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/dusk-network/citadel/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/dusk-network/citadel/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/dusk-network/citadel/compare/v0.8.0...v0.9.0 diff --git a/Cargo.toml b/Cargo.toml index d6e23b1..e206735 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zk-citadel" -version = "0.12.0-rc.0" +version = "0.12.0" repository = "https://github.com/dusk-network/citadel" description = "Implementation of Citadel, a SSI system integrated in Dusk Network." categories = ["cryptography", "authentication", "mathematics", "science"] @@ -17,7 +17,7 @@ dusk-bls12_381 = { version = "0.13", default-features = false, features = ["rkyv dusk-jubjub = { version = "0.14", default-features = false, features = ["rkyv-impl", "alloc"] } ff = { version = "0.13", default-features = false } jubjub-schnorr = { version = "0.4", features = ["zk", "rkyv-impl", "alloc"] } -phoenix-core = { version = "0.30.0-rc", features = ["rkyv-impl", "alloc"] } +phoenix-core = { version = "0.30", features = ["rkyv-impl", "alloc"] } rand_core = { version = "0.6", default-features=false, features = ["getrandom"] } rkyv = { version = "0.7", default-features = false } bytecheck = { version = "0.6", default-features = false }