Allow GHC-8.8.1

This commit is contained in:
waddlaw 2020-01-18 19:36:01 +09:00
parent 0f358f0017
commit c463da52b3
5 changed files with 9 additions and 5 deletions

View File

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
ghc: ["8.6.5"]
ghc: ["8.6.5", "8.8.1"]
cabal: ["3.0"]
steps:

View File

@ -1,5 +1,9 @@
# Revision history for haskell-stack-trace-pugin
## Unreleased changes
- Allow GHC-8.8.1
## 0.1.1.0 -- 2020-01-18
- Ergonomic improvements [#1](https://github.com/waddlaw/haskell-stack-trace-plugin/pull/1) (@khwarizmii)

View File

@ -20,7 +20,7 @@ extra-source-files:
CHANGELOG.md
Readme.md
tested-with: GHC ==8.6.5
tested-with: GHC ==8.6.5 || ==8.8.1
source-repository head
type: git
@ -32,13 +32,13 @@ flag dev
default: False
common common-opts
build-depends: base ^>=4.12
build-depends: base >=4.12 && <4.14
default-language: Haskell2010
library
import: common-opts
hs-source-dirs: src
build-depends: ghc ^>=8.6
build-depends: ghc ^>=8.6 || ^>=8.8
exposed-modules: StackTrace.Plugin
if flag(dev)

View File

@ -9,7 +9,7 @@ import System.Process.Typed
spec :: Spec
spec = do
output <- runIO exe
expected <- runIO $ BL.readFile "test/resource/ghc86.output"
expected <- runIO $ BL.readFile "test/resource/ghc.output"
it "integration test" $ output `shouldBe` expected