Skip to content

Commit

Permalink
[#41] Support GHC-8.10 (#42)
Browse files Browse the repository at this point in the history
Resolves #41
  • Loading branch information
chshersh authored Apr 7, 2020
1 parent 072ed72 commit 472736b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ matrix:
- ghc: 8.4.4
- ghc: 8.6.5
- ghc: 8.8.3
- ghc: 8.10.1

- ghc: 8.8.3
env: STACK_YAML="$TRAVIS_BUILD_DIR/stack.yaml"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
`validation-selective` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## Unreleased

* [#41](https://github.com/kowainik/relude/issues/41):
Support GHC-8.10.1.
(by [@chshersh](https://github.com/chshersh))

## 0.0.0.0

* Initially created.
Expand Down
9 changes: 6 additions & 3 deletions validation-selective.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: validation-selective
version: 0.0.0.0
version: 0.0.0.1
synopsis: Lighweight pure data validation based on Applicative and Selective functors
description:
Lighweight pure data validation based on Applicative and Selective
Expand Down Expand Up @@ -28,13 +28,14 @@ extra-doc-files: README.md
tested-with: GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.3
GHC == 8.10.1

source-repository head
type: git
location: https://github.com/kowainik/validation-selective.git

common common-options
build-depends: base >= 4.11.1.0 && < 4.14
build-depends: base >= 4.11.1.0 && < 4.15

ghc-options: -Wall
-Wcompat
Expand All @@ -49,6 +50,8 @@ common common-options
-Wpartial-fields
if impl(ghc >= 8.8)
ghc-options: -Wmissing-deriving-strategies
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages

default-language: Haskell2010
default-extensions: ConstraintKinds
Expand Down Expand Up @@ -86,7 +89,7 @@ test-suite validation-selective-test
, hspec ^>= 2.7.1
, hspec-hedgehog ^>= 0.0.1.1
, selective
, text ^>= 1.2.4
, text ^>= 1.2.3
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
Expand Down

0 comments on commit 472736b

Please # to comment.