From 8db43f6bff43b8553cdf443f8574c5d35a78386b Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Sun, 7 Jan 2018 08:30:30 +0000 Subject: [PATCH] Bump upper bounds for safe --- protolude.cabal | 4 ++-- stack-10.0.yaml | 6 ++++++ stack-9.0.yaml | 6 ++++++ test_stack_lts.sh | 6 ++++++ 4 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 stack-10.0.yaml create mode 100644 stack-9.0.yaml diff --git a/protolude.cabal b/protolude.cabal index 95d55ee02..858cc83b5 100644 --- a/protolude.cabal +++ b/protolude.cabal @@ -11,6 +11,7 @@ copyright: 2016-2017 Stephen Diehl category: Prelude build-type: Simple cabal-version: >=1.10 +bug-reports: https://github.com/sdiehl/protolude/issues tested-with: GHC == 7.6.1, GHC == 7.6.2, @@ -24,7 +25,6 @@ tested-with: GHC == 7.10.3, GHC == 8.0.1, GHC == 8.2.1 -Bug-Reports: https://github.com/sdiehl/protolude/issues description: A sensible set of defaults for writing custom Preludes. @@ -80,7 +80,7 @@ library if impl(ghc >= 7.8.0) build-depends: - safe >= 0.3 && <0.3.16 + safe >= 0.3 && <0.4 else build-depends: safe >= 0.3 && <0.3.10 diff --git a/stack-10.0.yaml b/stack-10.0.yaml new file mode 100644 index 000000000..fa8bfe2ce --- /dev/null +++ b/stack-10.0.yaml @@ -0,0 +1,6 @@ +resolver: lts-10.0 +packages: +- '.' +extra-deps: +flags: {} +extra-package-dbs: [] diff --git a/stack-9.0.yaml b/stack-9.0.yaml new file mode 100644 index 000000000..6219daf89 --- /dev/null +++ b/stack-9.0.yaml @@ -0,0 +1,6 @@ +resolver: lts-9.0 +packages: +- '.' +extra-deps: +flags: {} +extra-package-dbs: [] diff --git a/test_stack_lts.sh b/test_stack_lts.sh index 2ce2f9f08..d6f40cabf 100755 --- a/test_stack_lts.sh +++ b/test_stack_lts.sh @@ -9,3 +9,9 @@ STACK_YAML=stack-7.10.yaml stack build --no-terminal echo -e "\e[92mLTS 8.0" STACK_YAML=stack-8.0.yaml stack build --no-terminal + +echo -e "\e[92mLTS 9.0" +STACK_YAML=stack-9.0.yaml stack build --no-terminal + +echo -e "\e[92mLTS 10.0" +STACK_YAML=stack-10.0.yaml stack build --no-terminal