Skip to content

Commit

Permalink
[#22] Support GHC-8.10
Browse files Browse the repository at this point in the history
Resolves #22
  • Loading branch information
vrom911 committed Apr 6, 2020
1 parent 89c77b8 commit 9b51471
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:
runs-on: ubuntu-16.04
strategy:
matrix:
ghc: ["8.2.2", "8.4.4", "8.6.5", "8.8.1"]
ghc:
- "8.2.2"
- "8.4.4"
- "8.6.5"
- "8.8.1"
- "8.10.1"
cabal: ["3.0"]

steps:
Expand All @@ -40,4 +45,4 @@ jobs:
- name: Test
run: |
cabal test --enable-tests
cabal test --enable-tests
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ matrix:
- ghc: 8.4.4
- ghc: 8.6.5
- ghc: 8.8.2
- ghc: 8.10.1

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

## Unreleased

* [#22](https://github.com/kowainik/colourista/issues/22):
Support GHC-8.10.

## 0.0.0.0 — Feb 16, 2020 🌈

* Initially created.
Expand Down
8 changes: 6 additions & 2 deletions colourista.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: colourista
version: 0.0.0.0
version: 0.0.0.1
synopsis: Convenient interface for printing colourful messages
description: Convenient interface for printing colourful messages based on the @ansi-terminal@ library.
homepage: https://github.com/kowainik/colourista
Expand All @@ -18,6 +18,7 @@ tested-with: GHC == 8.2.2
GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.2
GHC == 8.10.1

source-repository head
type: git
Expand All @@ -29,7 +30,7 @@ library
Colourista.IO
Colourista.Pure

build-depends: base >= 4.10.1.0 && < 4.14
build-depends: base >= 4.10.1.0 && < 4.15
, ansi-terminal ^>= 0.10
, bytestring ^>= 0.10
, text ^>= 1.2.3.0
Expand All @@ -44,10 +45,13 @@ library
if impl(ghc >= 8.8.1)
ghc-options: -Wmissing-deriving-strategies
-Werror=missing-deriving-strategies
if impl(ghc >= 8.10.1)
ghc-options: -Wunused-packages

default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
DerivingStrategies
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
Expand Down

0 comments on commit 9b51471

Please sign in to comment.