Skip to content

Commit

Permalink
Compatibility with ghc-9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdral committed Feb 17, 2024
1 parent ffb5cc4 commit be2c441
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.8.1
compilerKind: ghc
compilerVersion: 9.8.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.6.2
compilerKind: ghc
compilerVersion: 9.6.2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for quickcheck-lockstep

## next release

* Add compatibility with ghc-9.8

## 0.3.0 -- 2023-10-17

* BREAKING: Update `quickcheck-dynamic` dependency to `>=3.3`.
Expand Down
4 changes: 2 additions & 2 deletions quickcheck-lockstep.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: Lockstep-style testing is a particular approach for blackbox
APIs calls, then execute them both against the system under
test and against a model, and compare responses up to some
notion of observability.
tested-with: GHC ==8.10 || ==9.0 || ==9.2 || ==9.4 || ==9.6
tested-with: GHC ==8.10 || ==9.0 || ==9.2 || ==9.4 || ==9.6 || ==9.8

source-repository head
type: git
Expand Down Expand Up @@ -59,7 +59,7 @@ library
Test.QuickCheck.StateModel.Lockstep.GVar
build-depends:
-- quickcheck-dynamic requires ghc 8.10 minimum
base >= 4.14 && < 4.19
base >= 4.14 && < 4.20
, constraints >= 0.13 && < 0.14
, mtl >= 2.2 && < 2.4
, containers >= 0.6 && < 0.7
Expand Down
2 changes: 2 additions & 0 deletions src/Test/QuickCheck/StateModel/Lockstep/Op.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{-# LANGUAGE TypeOperators #-}

module Test.QuickCheck.StateModel.Lockstep.Op (
Operation(..)
, InterpretOp(..)
Expand Down

0 comments on commit be2c441

Please sign in to comment.