Skip to content

Commit cdae698

Browse files
authored
Merge pull request haskell-github#333 from phadej/ghc-8.6
Support ghc-8.6
2 parents 9b86cff + 5ee98e5 commit cdae698

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.travis.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,24 @@ before_cache:
3232

3333
matrix:
3434
include:
35+
- compiler: "ghc-8.6.1"
36+
# env: TEST=--disable-tests BENCH=--disable-benchmarks
37+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.6.1], sources: [hvr-ghc]}}
3538
- compiler: "ghc-8.4.3"
3639
# env: TEST=--disable-tests BENCH=--disable-benchmarks
37-
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.2,ghc-8.4.3], sources: [hvr-ghc]}}
40+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.4.3], sources: [hvr-ghc]}}
3841
- compiler: "ghc-8.2.2"
3942
# env: TEST=--disable-tests BENCH=--disable-benchmarks
40-
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.2,ghc-8.2.2], sources: [hvr-ghc]}}
43+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.2.2], sources: [hvr-ghc]}}
4144
- compiler: "ghc-8.0.2"
4245
# env: TEST=--disable-tests BENCH=--disable-benchmarks
43-
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.2,ghc-8.0.2], sources: [hvr-ghc]}}
46+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.0.2], sources: [hvr-ghc]}}
4447
- compiler: "ghc-7.10.3"
4548
# env: TEST=--disable-tests BENCH=--disable-benchmarks
46-
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.2,ghc-7.10.3], sources: [hvr-ghc]}}
49+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.10.3], sources: [hvr-ghc]}}
4750
- compiler: "ghc-7.8.4"
4851
# env: TEST=--disable-tests BENCH=--disable-benchmarks
49-
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.2,ghc-7.8.4], sources: [hvr-ghc]}}
52+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.8.4], sources: [hvr-ghc]}}
5053

5154
before_install:
5255
- HC=${CC}

github.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ homepage: https://github.com/phadej/github
2525
copyright: Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016 Oleg Grenrus
2626
category: Network
2727
build-type: Simple
28-
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
28+
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.1
2929
cabal-version: >=1.10
3030
extra-source-files:
3131
README.md,
@@ -133,10 +133,10 @@ Library
133133

134134
-- Packages bundles with GHC, mtl and text are also here
135135
build-depends:
136-
base >=4.7 && <4.12,
137-
binary >=0.7.1.0 && <0.10,
136+
base >=4.7 && <4.13,
137+
binary >=0.7.1.0 && <0.11,
138138
bytestring >=0.10.4.0 && <0.11,
139-
containers >=0.5.5.1 && <0.6,
139+
containers >=0.5.5.1 && <0.7,
140140
deepseq >=1.3.0.2 && <1.5,
141141
mtl (>=2.1.3.1 && <2.2) || (>=2.2.1 && <2.3),
142142
text >=1.2.0.6 && <1.3,

0 commit comments

Comments
 (0)