Skip to content

Commit

Permalink
Support for GHC 9.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Nov 3, 2023
1 parent 814e0bb commit ac1c58a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ghci
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
:set -XRecordWildCards
:set -XViewPatterns

:set -DTEST -isrc -itest -hide-packagebase-compat-batteries
:set -DTEST -isrc -itest
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- '9.2'
- '9.4'
- '9.6'
- '9.8'
include:
- os: macos-latest
ghc: system
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sensei
version: 0.7.0
version: 0.8.0
synopsis: Automatically run Hspec tests on file modifications
maintainer: Simon Hengel <[email protected]>
license: MIT
Expand Down
4 changes: 2 additions & 2 deletions sensei.cabal

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Imports.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Control.Exception as Imports hiding (handle)
import Control.Monad as Imports
import Data.Function as Imports (fix)
import Control.Applicative as Imports
import Data.Functor as Imports
import Data.Functor as Imports ((<&>))
import Data.Bifunctor as Imports
import Data.Char as Imports
import Data.Either as Imports
Expand Down
3 changes: 1 addition & 2 deletions src/Session.hs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ import Imports

import Data.IORef

import Language.Haskell.GhciWrapper hiding (echo)
import qualified Language.Haskell.GhciWrapper as Interpreter
import Language.Haskell.GhciWrapper

import Util
import Options
Expand Down
4 changes: 2 additions & 2 deletions test/TriggerSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ spec = do
, " Spec.hs:8:3: "
, " 1) bar"
, ""
, " To rerun use: --match \"/bar/\""
, " To rerun use: --match \"/bar/\" --seed 0"
, ""
, "Randomized with seed 0"
, ""
Expand Down Expand Up @@ -221,7 +221,7 @@ spec = do
, " Spec.hs:8:3: "
, " 1) bar"
, ""
, " To rerun use: --match \"/bar/\""
, " To rerun use: --match \"/bar/\" --seed 0"
, ""
, "Randomized with seed 0"
, ""
Expand Down

0 comments on commit ac1c58a

Please sign in to comment.