Skip to content
This repository has been archived by the owner on Jun 22, 2018. It is now read-only.

Commit

Permalink
Drop support for GHC 7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Jan 2, 2017
1 parent 96b3e90 commit f0b1c4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ sudo: false

matrix:
include:
- env: CABALVER=1.16 GHCVER=7.6.3
addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.3], sources: [hvr-ghc]}}
- env: CABALVER=1.18 GHCVER=7.8.4
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER=7.10.3
Expand All @@ -16,7 +14,6 @@ matrix:
addons: {apt: {packages: [cabal-install-head,ghc-head], sources: [hvr-ghc]}}

allow_failures:
- env: CABALVER=1.16 GHCVER=7.6.3
- env: CABALVER=head GHCVER=head

before_install:
Expand All @@ -30,7 +27,6 @@ install:

script:
- case "$CABALVER" in
"1.16") cabal configure --enable-tests -v2 -f dev ;;
"1.18") cabal configure --enable-tests --enable-library-coverage -v2 -f dev ;;
*) cabal configure --enable-tests --enable-coverage -v2 -f dev ;;
esac
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

* Derived `Eq` for `SlugException`.

* Drop support for GHC 7.6.

## Slug 0.1.5

* Allow Aeson 1.0.
Expand Down
4 changes: 2 additions & 2 deletions slug.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ flag dev
library
build-depends: QuickCheck >= 2.4 && < 3.0
, aeson >= 0.8 && < 1.2
, base >= 4.6 && < 5.0
, base >= 4.7 && < 5.0
, exceptions >= 0.6 && < 0.9
, path-pieces >= 0.1.5 && < 0.3
, persistent >= 2.0 && < 3.0
Expand All @@ -77,7 +77,7 @@ test-suite tests
ghc-options: -O2 -Wall
default-extensions: OverloadedStrings
build-depends: QuickCheck >= 2.4 && < 3.0
, base >= 4.6 && < 5.0
, base >= 4.7 && < 5.0
, exceptions >= 0.6 && < 0.9
, hspec >= 2.0 && < 3.0
, path-pieces >= 0.1.5 && < 0.3
Expand Down

0 comments on commit f0b1c4d

Please sign in to comment.