Skip to content

Commit 5d3061d

Browse files
authored
Merge pull request #5039 from IntersectMBO/aniketd/bump-base
Bump base and update lowest GHC version to v9.6.7.
2 parents 4cb07e9 + f93e293 commit 5d3061d

File tree

51 files changed

+71
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+71
-181
lines changed

eras/allegra/impl/cardano-ledger-allegra.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ library
6666

6767
build-depends:
6868
aeson,
69-
base >=4.14 && <5,
69+
base >=4.18 && <5,
7070
bytestring,
7171
cardano-ledger-binary >=1.4,
7272
cardano-ledger-core >=1.17,

eras/allegra/impl/src/Cardano/Ledger/Allegra/TxBody.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
{-# LANGUAGE UndecidableSuperClasses #-}
1717
{-# LANGUAGE ViewPatterns #-}
1818
{-# OPTIONS_GHC -Wno-orphans #-}
19-
{-# OPTIONS_GHC -Wno-redundant-constraints #-}
2019

2120
module Cardano.Ledger.Allegra.TxBody (
2221
AllegraEraTxBody (..),

eras/alonzo/impl/cardano-ledger-alonzo.cabal

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ library
7878
build-depends:
7979
FailT,
8080
aeson >=2.2,
81-
base >=4.14 && <5,
81+
base >=4.18 && <5,
8282
base64-bytestring,
8383
bytestring,
8484
cardano-crypto-class,
@@ -103,9 +103,6 @@ library
103103
transformers,
104104
validation-selective,
105105

106-
if !impl(ghc >=9.2)
107-
ghc-options: -Wno-name-shadowing
108-
109106
library testlib
110107
exposed-modules:
111108
Test.Cardano.Ledger.Alonzo.Arbitrary

eras/alonzo/test-suite/cardano-ledger-alonzo-test.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: cardano-ledger-alonzo-test
3-
version: 1.3.1.0
3+
version: 1.3.1.1
44
license: Apache-2.0
55
maintainer: [email protected]
66
author: IOHK
@@ -44,7 +44,7 @@ library
4444

4545
build-depends:
4646
QuickCheck,
47-
base >=4.14 && <5,
47+
base >=4.18 && <5,
4848
cardano-ledger-allegra >=1.2,
4949
cardano-ledger-alonzo:{cardano-ledger-alonzo, testlib} >=1.13,
5050
cardano-ledger-binary:{cardano-ledger-binary, testlib} >=1.0,

eras/babbage/impl/cardano-ledger-babbage.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ library
7575

7676
build-depends:
7777
aeson >=2.2,
78-
base >=4.14 && <5,
78+
base >=4.18 && <5,
7979
cardano-data >=1.2,
8080
cardano-ledger-allegra ^>=1.8,
8181
cardano-ledger-alonzo ^>=1.14,

eras/babbage/impl/testlib/Test/Cardano/Ledger/Babbage/ImpTest.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
{-# LANGUAGE ScopedTypeVariables #-}
66
{-# LANGUAGE TypeFamilies #-}
77
{-# LANGUAGE UndecidableInstances #-}
8-
#if __GLASGOW_HASKELL__ < 900
9-
{-# LANGUAGE IncoherentInstances #-}
10-
#endif
118
{-# OPTIONS_GHC -Wno-orphans #-}
129

1310
module Test.Cardano.Ledger.Babbage.ImpTest (

eras/babbage/test-suite/cardano-ledger-babbage-test.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: cardano-ledger-babbage-test
3-
version: 1.3.1.0
3+
version: 1.3.1.1
44
license: Apache-2.0
55
maintainer: [email protected]
66
author: IOHK
@@ -34,7 +34,7 @@ library
3434

3535
build-depends:
3636
QuickCheck,
37-
base >=4.14 && <5,
37+
base >=4.18 && <5,
3838
cardano-ledger-alonzo:{cardano-ledger-alonzo, testlib} >=1.12,
3939
cardano-ledger-alonzo-test >=1.1,
4040
cardano-ledger-babbage >=1.11,

eras/byron/chain/executable-spec/byron-spec-chain.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: byron-spec-chain
3-
version: 1.0.1.0
3+
version: 1.0.1.1
44
license: Apache-2.0
55
maintainer: [email protected]
66
author: IOHK
@@ -31,7 +31,7 @@ library
3131
-Wunused-packages
3232

3333
build-depends:
34-
base >=4.14 && <5,
34+
base >=4.18 && <5,
3535
bimap >=0.4 && <0.6,
3636
byron-spec-ledger >=1.0,
3737
bytestring,

eras/byron/crypto/cardano-crypto-wrapper.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ library
7979

8080
build-depends:
8181
aeson,
82-
base >=4.14 && <5,
82+
base >=4.18 && <5,
8383
base16-bytestring >=1,
8484
base64-bytestring,
8585
base64-bytestring-type,

eras/byron/ledger/executable-spec/byron-spec-ledger.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: byron-spec-ledger
3-
version: 1.1.0.0
3+
version: 1.1.0.1
44
license: Apache-2.0
55
maintainer: [email protected]
66
author: IOHK
@@ -41,7 +41,7 @@ library
4141

4242
build-depends:
4343
Unique >=0.4.7.6,
44-
base >=4.14 && <5,
44+
base >=4.18 && <5,
4545
bimap >=0.4 && <0.6,
4646
bytestring,
4747
cardano-crypto-class,

0 commit comments

Comments
 (0)