From 87809975126fafae94430b7c136f3d6556c6c34c Mon Sep 17 00:00:00 2001 From: Ian Grant Jeffries Date: Thu, 26 May 2016 11:47:23 -0400 Subject: [PATCH 1/2] Enable GHC 8. --- .travis.yml | 3 +++ hjsonpointer.cabal | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ca5494..dd91246 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,9 @@ matrix: - env: CABALVER=1.22 GHCVER=7.10.2 compiler: ": #GHC 7.10.2" addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.2], sources: [hvr-ghc]}} + - env: CABALVER=1.24 GHCVER=8.0.1 + compiler: ": #GHC 8.0.1" + addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.1], sources: [hvr-ghc]}} before_install: - unset CC diff --git a/hjsonpointer.cabal b/hjsonpointer.cabal index fdbe663..76ec4c5 100644 --- a/hjsonpointer.cabal +++ b/hjsonpointer.cabal @@ -9,7 +9,7 @@ maintainer: ian@housejeffries.com category: Data build-type: Simple cabal-version: >=1.10 -tested-with: GHC == 7.8.4, GHC == 7.10.3 +tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1 extra-source-files: changelog.md README.md @@ -21,7 +21,7 @@ library other-extensions: GeneralizedNewtypeDeriving ghc-options: -Wall build-depends: aeson >= 0.7 && < 0.12 - , base >= 4.6 && < 4.9 + , base >= 4.6 && < 4.10 , QuickCheck >= 2.8 && < 2.9 , unordered-containers >= 0.2 && < 0.3 , text >= 1.2 && < 1.3 From ee70dcbfc319ec3e39c462da89e0d5b5f2415d19 Mon Sep 17 00:00:00 2001 From: Ian Grant Jeffries Date: Thu, 26 May 2016 12:06:56 -0400 Subject: [PATCH 2/2] 0.3.0.1 --- hjsonpointer.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hjsonpointer.cabal b/hjsonpointer.cabal index 76ec4c5..aea161b 100644 --- a/hjsonpointer.cabal +++ b/hjsonpointer.cabal @@ -1,5 +1,5 @@ name: hjsonpointer -version: 0.3.0.0 +version: 0.3.0.1 synopsis: JSON Pointer library homepage: https://github.com/seagreen/hjsonpointer license: MIT