Skip to content

Commit 81f1d26

Browse files
committed
Added support for ghc-9.2
1 parent 7371486 commit 81f1d26

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

io-sim/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Non-breaking changes
88

9+
### 1.8.0.1
10+
11+
* Added support for `ghc-9.2`.
12+
913
## 1.8.0.0
1014

1115
- Provided `MonadTraceMVar`

io-sim/io-sim.cabal

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.4
22
name: io-sim
3-
version: 1.8.0.0
3+
version: 1.8.0.1
44
synopsis: A pure simulator for monadic concurrency with STM.
55
description:
66
A pure simulator monad with support of concurrency (base & async style), stm,
@@ -62,6 +62,8 @@ library
6262
Data.Deque.Strict
6363
default-language: GHC2021
6464
default-extensions: LambdaCase
65+
if impl(ghc < 9.4)
66+
default-extensions: GADTs
6567
build-depends: base >=4.16 && <4.22,
6668
io-classes:{io-classes,strict-stm,si-timers}
6769
^>=1.6 || ^>= 1.7 || ^>= 1.8,
@@ -94,6 +96,8 @@ test-suite test
9496
Test.Control.Monad.IOSimPOR
9597
default-language: GHC2021
9698
default-extensions: LambdaCase
99+
if impl(ghc < 9.4)
100+
default-extensions: GADTs
97101
build-depends: base,
98102
array,
99103
containers,
@@ -116,6 +120,8 @@ benchmark bench
116120
main-is: Main.hs
117121
default-language: GHC2021
118122
default-extensions: LambdaCase
123+
if impl(ghc < 9.4)
124+
default-extensions: GADTs
119125
build-depends: base,
120126
criterion ^>= 1.6,
121127

0 commit comments

Comments
 (0)