Skip to content

Commit dc04ec6

Browse files
committed
change log crates version
1 parent a6fc158 commit dc04ec6

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-stm/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.6.3 (12-03-2025)
9+
10+
### Added
11+
12+
- Jubjub wrapper added to schnorr signature module.
13+
814
## 0.6.2 (11-27-2025)
915

1016
### Changed

mithril-stm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-stm"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = { workspace = true }
55
authors = { workspace = true }
66
homepage = { workspace = true }

mithril-stm/src/signature_scheme/schnorr_signature/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ mod tests {
163163
assert_eq!(signature, recovered_signature, "Recovered signature does not match with the original!");
164164

165165
// Test invalid `commitment_point`
166-
let mut corrupted_bytes = signature_bytes.clone();
166+
let mut corrupted_bytes = signature_bytes;
167167
corrupted_bytes[31] |= 0xff;
168168
let result = SchnorrSignature::from_bytes(&corrupted_bytes).expect_err("From bytes conversion of signature should fail");
169169
assert!(
@@ -175,7 +175,7 @@ mod tests {
175175
);
176176

177177
// Test invalid `response`
178-
let mut corrupted_bytes = signature_bytes.clone();
178+
let mut corrupted_bytes = signature_bytes;
179179
corrupted_bytes[63] |= 0xff;
180180
let result = SchnorrSignature::from_bytes(&corrupted_bytes).expect_err("From bytes conversion should fail");
181181
assert!(
@@ -187,7 +187,7 @@ mod tests {
187187
);
188188

189189
// Test invalid `challenge`
190-
let mut corrupted_bytes = signature_bytes.clone();
190+
let mut corrupted_bytes = signature_bytes;
191191
corrupted_bytes[95] |= 0xff;
192192
let result = SchnorrSignature::from_bytes(&corrupted_bytes).expect_err("From bytes conversion should fail");
193193
assert!(

0 commit comments

Comments
 (0)