Skip to content

Commit c352749

Browse files
authored
Merge pull request #2839 from input-output-hk/jpraynaud/2809-create-lagrange-era
feat: create new `Lagrange` Mithril era
2 parents 97c27bd + 081d70a commit c352749

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ As a minor extension, we have adopted a slightly different versioning convention
2323
- Refactor Signer and Aggregator (leader, follower) to read network configurations from a `MithrilNetworkConfigurationProvider`
2424
- Support for reading network configurations from its leader aggregator for the follower aggregators.
2525

26+
- Support for new `Lagrange` Mithril era.
27+
2628
- Crates versions:
2729

2830
| Crate | Version |

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

mithril-common/src/entities/supported_era.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ use strum::{Display, EnumIter, EnumString, IntoEnumIterator};
1010
pub enum SupportedEra {
1111
/// Pythagoras era
1212
Pythagoras,
13+
14+
/// Lagrange era
15+
Lagrange,
1316
}
1417

1518
impl SupportedEra {

0 commit comments

Comments
 (0)