Skip to content

Commit 29669da

Browse files
committed
Bumped protocol version max
1 parent d90eb4d commit 29669da

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

eras/conway/impl/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 1.20.0.0
44

5+
* Bump `ProtVerHigh ConwayEra` to `11`
56
* Remove `ConwayTxBody`
67
* Removed `era` parameter from `ConwayTxBodyRaw`
78
* Add `MkConwayTxBody` and all members of `ConwayTxBodyRaw`:

eras/conway/impl/src/Cardano/Ledger/Conway/Era.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ data ConwayEra
4141
instance Era ConwayEra where
4242
type PreviousEra ConwayEra = BabbageEra
4343
type ProtVerLow ConwayEra = 9
44-
type ProtVerHigh ConwayEra = 10
44+
type ProtVerHigh ConwayEra = 11
4545

4646
eraName = "Conway"
4747

libs/cardano-ledger-binary/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 1.7.0.0
44

5+
* Bump `MaxVersion` to `12`
56
* Add `decodeFullFromHexText`
67
* Move `translateViaCBORAnnotator`, `decodeFullAnnotator`, `decodeFullAnnotatedBytes`, `decodeFullAnnotatorFromHexText` to `testlib`
78
* Moved `Annotator` orphan instance for plutus `Data` into `testlib`

libs/cardano-ledger-binary/src/Cardano/Ledger/Binary/Version.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ type MinVersion = 0
5151

5252
-- | Maximum supported version. This is the major protocol version of the latest known
5353
-- protocol version that we want to support, including for development and testing.
54-
type MaxVersion = 11
54+
type MaxVersion = 12
5555

5656
instance Enum Version where
5757
toEnum = errorFail . mkVersion

0 commit comments

Comments
 (0)