Skip to content

Commit 05092fc

Browse files
committed
change log and crates version
1 parent 5d9f1bb commit 05092fc

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
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.4.8 (02-07-2025)
9+
10+
### Deprecated
11+
12+
- Old struct names are deprecated.
13+
814
## 0.4.6 (27-06-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.4.7"
3+
version = "0.4.8"
44
edition = { workspace = true }
55
authors = { workspace = true }
66
homepage = { workspace = true }

mithril-stm/src/lib.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -140,40 +140,40 @@ pub type Stake = u64;
140140
pub type Index = u64;
141141

142142
// Aliases
143-
#[deprecated(since = "0.4.6", note = "Use `AggregateSignature` instead")]
143+
#[deprecated(since = "0.4.8", note = "Use `AggregateSignature` instead")]
144144
pub use aggregate_signature::AggregateSignature as StmAggrSig;
145145

146-
#[deprecated(since = "0.4.6", note = "Use `AggregateVerificationKey` instead")]
146+
#[deprecated(since = "0.4.8", note = "Use `AggregateVerificationKey` instead")]
147147
pub use aggregate_signature::AggregateVerificationKey as StmAggrVerificationKey;
148148

149-
#[deprecated(since = "0.4.6", note = "Use `Clerk` instead")]
149+
#[deprecated(since = "0.4.8", note = "Use `Clerk` instead")]
150150
pub use aggregate_signature::Clerk as StmClerk;
151151

152-
#[deprecated(since = "0.4.6", note = "Use `ClosedKeyRegistration` instead")]
152+
#[deprecated(since = "0.4.8", note = "Use `ClosedKeyRegistration` instead")]
153153
pub use key_registration::ClosedKeyRegistration as ClosedKeyReg;
154154

155-
#[deprecated(since = "0.4.6", note = "Use `KeyRegistration` instead")]
155+
#[deprecated(since = "0.4.8", note = "Use `KeyRegistration` instead")]
156156
pub use key_registration::KeyRegistration as KeyReg;
157157

158-
#[deprecated(since = "0.4.6", note = "Use `Parameters` instead")]
158+
#[deprecated(since = "0.4.8", note = "Use `Parameters` instead")]
159159
pub use parameters::Parameters as StmParameters;
160160

161-
#[deprecated(since = "0.4.6", note = "Use `Initializer` instead")]
161+
#[deprecated(since = "0.4.8", note = "Use `Initializer` instead")]
162162
pub use participant::Initializer as StmInitializer;
163163

164-
#[deprecated(since = "0.4.6", note = "Use `Signer` instead")]
164+
#[deprecated(since = "0.4.8", note = "Use `Signer` instead")]
165165
pub use participant::Signer as StmSigner;
166166

167-
#[deprecated(since = "0.4.6", note = "Use `VerificationKey` instead")]
167+
#[deprecated(since = "0.4.8", note = "Use `VerificationKey` instead")]
168168
pub use participant::VerificationKey as StmVerificationKey;
169169

170170
#[deprecated(
171-
since = "0.4.6",
171+
since = "0.4.8",
172172
note = "Use `VerificationKeyProofOfPossession` instead"
173173
)]
174174
pub use participant::VerificationKeyProofOfPossession as StmVerificationKeyPoP;
175175

176-
#[deprecated(since = "0.4.6", note = "Use `SingleSignature` instead")]
176+
#[deprecated(since = "0.4.8", note = "Use `SingleSignature` instead")]
177177
pub use single_signature::SingleSignature as StmSig;
178178

179179
#[deprecated(since = "0.4.6", note = "Use `BasicVerifier` instead")]

0 commit comments

Comments
 (0)