Skip to content

Commit 93dbfd1

Browse files
authored
Add support for nothunks == 0.3.* (#1764)
# Description This has already been fixed in: * plutus: IntersectMBO/plutus#7428 * ledger: IntersectMBO/cardano-ledger#5422 * network: IntersectMBO/ouroboros-network#5243 It was not possible to test `consensus` with `nothunks == 0.3.*` because one of the ledger libraries still has a `nothunks >=0.2` dependency, and the version in `ledger@HEAD` is not compatible. The only change in `nothunks == 0.3.*` was a change in the `ThunkInfo` constructor which does not occur anywhere in the `consensus` code base.
2 parents 15a2a55 + 16d3ce7 commit 93dbfd1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ouroboros-consensus/ouroboros-consensus.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ library
336336
monoid-subclasses,
337337
mtl,
338338
multiset ^>=0.3,
339-
nothunks ^>=0.2,
339+
nothunks ^>=0.2 || ^>=0.3,
340340
ouroboros-network-api ^>=0.16,
341341
ouroboros-network-mock ^>=0.1,
342342
ouroboros-network-protocols ^>=0.15,
@@ -389,7 +389,7 @@ library ouroboros-consensus-lsm
389389
lsm-tree,
390390
mempack,
391391
mtl,
392-
nothunks ^>=0.2,
392+
nothunks ^>=0.2 || ^>=0.3,
393393
ouroboros-consensus,
394394
primitive,
395395
random,
@@ -425,7 +425,7 @@ library ouroboros-consensus-lmdb
425425
io-classes ^>=1.8.0.1,
426426
mempack,
427427
mtl,
428-
nothunks ^>=0.2,
428+
nothunks ^>=0.2 || ^>=0.3,
429429
ouroboros-consensus,
430430
rawlock ^>=0.1.1,
431431
resource-registry,

sop-extras/sop-extras.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ library
4949
build-depends:
5050
base >=4.14 && <4.22,
5151
constraints ^>=0.14,
52-
nothunks ^>=0.2,
52+
nothunks ^>=0.2 || ^>=0.3,
5353
sop-core ^>=0.5,
5454
strict-sop-core ^>=0.1,
5555
these ^>=1.2,

strict-sop-core/strict-sop-core.cabal

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

3939
build-depends:
4040
base >=4.14 && <4.22,
41-
nothunks ^>=0.2,
41+
nothunks ^>=0.2 || ^>=0.3,
4242
sop-core ^>=0.5,
4343

4444
default-language: Haskell2010

0 commit comments

Comments
 (0)