From a34addc6f6a3636473d62b7ba2ec119e07255544 Mon Sep 17 00:00:00 2001 From: moana Date: Wed, 27 Mar 2024 11:06:24 +0100 Subject: [PATCH] Bump to v0.37.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36777af..5575446 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.37.0] - 2024-03-27 + ### Added - Add variable length encryption and decryption [#236] @@ -532,7 +534,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#112]: https://github.com/dusk-network/poseidon252/issues/112 -[Unreleased]: https://github.com/dusk-network/poseidon252/compare/v0.36.0...HEAD +[Unreleased]: https://github.com/dusk-network/poseidon252/compare/v0.37.0...HEAD +[0.37.0]: https://github.com/dusk-network/poseidon252/compare/v0.36.0...v0.37.0 [0.36.0]: https://github.com/dusk-network/poseidon252/compare/v0.35.0...v0.36.0 [0.35.0]: https://github.com/dusk-network/poseidon252/compare/v0.34.0...v0.35.0 [0.34.0]: https://github.com/dusk-network/poseidon252/compare/v0.33.0...v0.34.0 diff --git a/Cargo.toml b/Cargo.toml index 5ea1ec1..a73cc71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dusk-poseidon" -version = "0.37.0-rc.0" +version = "0.37.0" description = "Implementation of Poseidon hash algorithm over the Bls12-381 Scalar field." categories = ["algorithms", "cryptography", "no-std", "wasm"] keywords = ["cryptography", "zero-knowledge", "crypto"] @@ -12,8 +12,8 @@ license = "MPL-2.0" [dependencies] dusk-bls12_381 = { version = "0.13", default-features = false, features = ["zeroize"] } dusk-jubjub = { version = "0.14", default-features = false } -dusk-plonk = { version = "0.19.2-rc.0", default-features = false, features = ["alloc", "zeroize"], optional = true } -dusk-safe = "0.2.0-rc.0" +dusk-plonk = { version = "0.19", default-features = false, features = ["alloc", "zeroize"], optional = true } +dusk-safe = "0.2" [dev-dependencies] criterion = "0.5"