Skip to content

Commit

Permalink
Drop support for GHC 7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Sep 10, 2016
1 parent fcce6b1 commit 88ffc1a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 0 additions & 3 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,libtagc0-dev], sources: [hvr-ghc]}}
- env: CABALVER=1.18 GHCVER=7.8.4
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4,libtagc0-dev], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER=7.10.3
Expand All @@ -29,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 @@ -2,6 +2,8 @@

* Re-wrote the test suite with Hspec.

* Drop support for GHC 7.6.

## HTagLib 1.0.3

* Export functions instead of record selectors for tag newtype wrappers.
Expand Down
12 changes: 6 additions & 6 deletions htaglib.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ flag dev
default: False

library
build-depends: base >= 4.6 && < 5.0
build-depends: base >= 4.7 && < 5.0
, bytestring >= 0.9 && < 0.11
, text >= 1.0 && < 1.3
extra-libraries: tag_c
Expand All @@ -81,11 +81,11 @@ test-suite tests
other-modules: Sound.HTagLib.GetterSpec
, Sound.HTagLib.SetterSpec
, Sound.HTagLib.Test.Util
build-depends: base >= 4.6 && < 5.0
, directory >= 1.2 && < 1.3
, filepath >= 1.4 && < 2.0
, hspec >= 2.0 && < 3.0
, htaglib >= 1.0
build-depends: base >= 4.7 && < 5.0
, directory >= 1.2 && < 1.3
, filepath >= 1.4 && < 2.0
, hspec >= 2.0 && < 3.0
, htaglib >= 1.0.3
default-extensions:
CPP
default-language: Haskell2010
Expand Down

0 comments on commit 88ffc1a

Please sign in to comment.