Skip to content

Commit 92d877a

Browse files
committed
Upgrade crates and openapi versions
Plus use the updated version for the added deprecated attributes.
1 parent c628a95 commit 92d877a

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-aggregator/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-aggregator"
3-
version = "0.4.50"
3+
version = "0.4.51"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client-cli/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-client-cli"
3-
version = "0.7.7"
3+
version = "0.7.8"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client/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-client"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "Mithril client library"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/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-common"
3-
version = "0.3.24"
3+
version = "0.3.25"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/src/entities/certificate_metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub struct CertificateMetadata {
5353

5454
/// Number of the last included immutable files for the digest computation
5555
#[deprecated(
56-
since = "0.3.21",
56+
since = "0.3.25",
5757
note = "Exist only for backward-compatibility, will be removed in the future"
5858
)]
5959
pub immutable_file_number: ImmutableFileNumber,

mithril-common/src/messages/certificate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub struct CertificateMessage {
3636
pub signed_entity_type: SignedEntityType,
3737

3838
/// Mithril beacon on the Cardano chain
39-
#[deprecated(since = "0.3.21", note = "use epoch and/or signed_entity_type instead")]
39+
#[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")]
4040
pub beacon: CardanoDbBeacon,
4141

4242
/// Certificate metadata

mithril-common/src/messages/certificate_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub struct CertificateListItemMessage {
6565
pub signed_entity_type: SignedEntityType,
6666

6767
/// Mithril beacon on the Cardano chain
68-
#[deprecated(since = "0.3.21", note = "use epoch and/or signed_entity_type instead")]
68+
#[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")]
6969
pub beacon: CardanoDbBeacon,
7070

7171
/// Certificate metadata

mithril-common/src/messages/certificate_pending.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct CertificatePendingMessage {
1010
pub epoch: Epoch,
1111

1212
/// Current Beacon
13-
#[deprecated(since = "0.3.21", note = "use epoch instead")]
13+
#[deprecated(since = "0.3.25", note = "use epoch instead")]
1414
pub beacon: CardanoDbBeacon,
1515

1616
/// Signed entity type

mithril-signer/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-signer"
3-
version = "0.2.117"
3+
version = "0.2.118"
44
description = "A Mithril Signer"
55
authors = { workspace = true }
66
edition = { workspace = true }

0 commit comments

Comments
 (0)