Skip to content

Commit 22fc514

Browse files
committed
Merge pull request #13 from phadej/ghc-8.0
Support GHC-8.0
2 parents 2fffd2d + ab89513 commit 22fc514

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ matrix:
2222
- env: CABALVER=1.22 GHCVER=7.10.1
2323
compiler: ": #GHC 7.10.1"
2424
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.1], sources: [hvr-ghc]}}
25+
- env: CABALVER=1.24 GHCVER=8.0.1
26+
compiler: ": #GHC 8.0.1"
27+
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.1], sources: [hvr-ghc]}}
2528

2629
before_install:
2730
- unset CC

ekg-core.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ category: System
1313
build-type: Simple
1414
extra-source-files: CHANGES.md
1515
cabal-version: >=1.10
16-
tested-with: GHC == 7.10.1, GHC == 7.8.4, GHC == 7.6.3
16+
tested-with: GHC==8.0.1, GHC == 7.10.1, GHC == 7.8.4, GHC == 7.6.3
1717

1818
library
1919
exposed-modules:
@@ -30,8 +30,8 @@ library
3030
System.Metrics.ThreadId
3131

3232
build-depends:
33-
ghc-prim < 0.5,
34-
base >= 4.5 && < 4.9,
33+
ghc-prim < 0.6,
34+
base >= 4.5 && < 4.10,
3535
containers >= 0.5 && < 0.6,
3636
text < 1.3,
3737
unordered-containers < 0.3

0 commit comments

Comments
 (0)