File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
- index-state : hackage.haskell.org 2025-01-14T02:09 :49Z
1
+ index-state : hackage.haskell.org 2025-01-15T06:45 :23Z
2
2
3
3
packages : ./io-sim
4
4
./io-classes
@@ -12,7 +12,7 @@ package io-classes
12
12
package strict-stm
13
13
flags : +asserts
14
14
15
- if impl (ghc >= 9.10.2 )
15
+ if impl (ghc >= 9.12 )
16
16
allow-newer :
17
17
-- Stuck on `cabal-3.14` issues and recalcitrant maintainers
18
18
-- https://github.com/haskell/aeson/issues/1124
Original file line number Diff line number Diff line change 1
1
# Revsion history of io-classes
2
2
3
+ ### 1.8.0.1
4
+
5
+ * Added support for ` ghc-9.2 ` .
6
+
3
7
### 1.8.0.0
4
8
5
9
### Breaking changes
Original file line number Diff line number Diff line change 1
1
cabal-version : 3.4
2
2
name : io-classes
3
- version : 1.8.0.0
3
+ version : 1.8.0.1
4
4
synopsis : Type classes for concurrency with STM, ST and timing
5
5
description :
6
6
IO Monad class hierarchy compatible with :
@@ -89,7 +89,7 @@ library
89
89
Control.Monad.Class.MonadTest
90
90
default-language : GHC2021
91
91
default-extensions : LambdaCase
92
- build-depends : base >= 4.9 && < 4.22 ,
92
+ build-depends : base >= 4.16 && < 4.22 ,
93
93
array,
94
94
async >= 2.1 && < 2.3 ,
95
95
bytestring,
@@ -118,6 +118,8 @@ library strict-stm
118
118
reexported-modules : Control.Concurrent.Class.MonadSTM.TSem as Control.Concurrent.Class.MonadSTM.Strict.TSem
119
119
default-language : GHC2021
120
120
default-extensions : LambdaCase
121
+ if impl(ghc < 9.4 )
122
+ default-extensions : GADTs
121
123
build-depends : base,
122
124
array,
123
125
@@ -134,6 +136,8 @@ library strict-mvar
134
136
exposed-modules : Control.Concurrent.Class.MonadMVar.Strict
135
137
default-language : GHC2021
136
138
default-extensions : LambdaCase
139
+ if impl(ghc < 9.4 )
140
+ default-extensions : GADTs
137
141
build-depends : base,
138
142
io-classes :io-classes,
139
143
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ library
62
62
Data.Deque.Strict
63
63
default-language : GHC2021
64
64
default-extensions : LambdaCase
65
- build-depends : base >= 4.9 && < 4.22 ,
65
+ build-depends : base >= 4.16 && < 4.22 ,
66
66
io-classes :{io-classes,strict-stm,si-timers}
67
67
^>= 1.6 || ^>= 1.7 || ^>= 1.8 ,
68
68
exceptions >= 0.10 ,
You can’t perform that action at this time.
0 commit comments