Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
index-state: hackage.haskell.org 2025-01-14T02:09:49Z
index-state: hackage.haskell.org 2025-01-15T06:45:23Z

packages: ./io-sim
./io-classes
Expand All @@ -12,7 +12,7 @@ package io-classes
package strict-stm
flags: +asserts

if impl (ghc >= 9.10.2)
if impl (ghc >= 9.12)
allow-newer:
-- Stuck on `cabal-3.14` issues and recalcitrant maintainers
-- https://github.com/haskell/aeson/issues/1124
Expand Down
4 changes: 4 additions & 0 deletions io-classes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revsion history of io-classes

### 1.8.0.1

* Added support for `ghc-9.2`.

### 1.8.0.0

### Breaking changes
Expand Down
8 changes: 6 additions & 2 deletions io-classes/io-classes.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.4
name: io-classes
version: 1.8.0.0
version: 1.8.0.1
synopsis: Type classes for concurrency with STM, ST and timing
description:
IO Monad class hierarchy compatible with:
Expand Down Expand Up @@ -89,7 +89,7 @@ library
Control.Monad.Class.MonadTest
default-language: GHC2021
default-extensions: LambdaCase
build-depends: base >=4.9 && <4.22,
build-depends: base >=4.16 && <4.22,
array,
async >=2.1 && <2.3,
bytestring,
Expand Down Expand Up @@ -118,6 +118,8 @@ library strict-stm
reexported-modules: Control.Concurrent.Class.MonadSTM.TSem as Control.Concurrent.Class.MonadSTM.Strict.TSem
default-language: GHC2021
default-extensions: LambdaCase
if impl(ghc < 9.4)
default-extensions: GADTs
build-depends: base,
array,

Expand All @@ -134,6 +136,8 @@ library strict-mvar
exposed-modules: Control.Concurrent.Class.MonadMVar.Strict
default-language: GHC2021
default-extensions: LambdaCase
if impl(ghc < 9.4)
default-extensions: GADTs
build-depends: base,
io-classes:io-classes,

Expand Down
2 changes: 1 addition & 1 deletion io-sim/io-sim.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ library
Data.Deque.Strict
default-language: GHC2021
default-extensions: LambdaCase
build-depends: base >=4.9 && <4.22,
build-depends: base >=4.16 && <4.22,
io-classes:{io-classes,strict-stm,si-timers}
^>=1.6 || ^>= 1.7 || ^>= 1.8,
exceptions >=0.10,
Expand Down
Loading