GHC 8.6.1 support (#95)

* GHC 8.6.1 support

 - Bounds changes for base, containers and stm
 - stack lts 12.* tests
 - works with stack 8.6.1 nightly
    stack build --resolver nightly --haddock --test --bench --no-run-benchmarks
 - works with cabal new-build

* GHCVER-8.6.1
This commit is contained in:
Andre Van Der Merwe
2018-10-01 20:20:06 +01:00
committed by Stephen Diehl
parent 5024f3fef9
commit 8c88bc7d64
5 changed files with 25 additions and 5 deletions
+5
View File
@@ -1,3 +1,8 @@
0.2.4
=====
* GHC 8.6.1 support
0.2.3
=====
+3 -3
View File
@@ -96,14 +96,14 @@ tracks Stack LTS resolver.
| ----------- | -------- | -------- |
| array | 0.4 | 0.6 |
| async | 2.0 | 2.3 |
| base | 4.6 | 4.12 |
| base | 4.6 | 4.13 |
| bytestring | 0.10 | 0.11 |
| containers | 0.5 | 0.6 |
| containers | 0.5 | 0.7 |
| deepseq | 1.3 | 1.5 |
| ghc-prim | 0.3 | 0.6 |
| hashable | 1.2 | 1.3 |
| mtl | 2.1 | 2.3 |
| stm | 2.4 | 2.5 |
| stm | 2.4 | 2.6 |
| text | 1.2 | 1.3 |
| transformers | 0.4 | 0.6 |
| | | |
+11
View File
@@ -73,3 +73,14 @@ stack build --resolver lts-11.10
stack build --resolver lts-11.11
stack build --resolver lts-11.12
stack build --resolver lts-11.13
stack build --resolver lts-12.0
stack build --resolver lts-12.1
stack build --resolver lts-12.2
stack build --resolver lts-12.3
stack build --resolver lts-12.4
stack build --resolver lts-12.5
stack build --resolver lts-12.6
stack build --resolver lts-12.7
stack build --resolver lts-12.8
stack build --resolver lts-12.9
stack build --resolver lts-12.10
+3 -2
View File
@@ -1,5 +1,5 @@
name: protolude
version: 0.2.2
version: 0.2.4
synopsis: A small prelude.
description: A sensible set of defaults for writing custom Preludes.
homepage: https://github.com/sdiehl/protolude
@@ -25,7 +25,8 @@ tested-with:
GHC == 7.10.3,
GHC == 8.0.1,
GHC == 8.2.1,
GHC == 8.4.1
GHC == 8.4.1,
GHC == 8.6.1
extra-source-files: README.md CHANGES.md
Source-Repository head
+3
View File
@@ -18,3 +18,6 @@ STACK_YAML=stack-10.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 11.0"
STACK_YAML=stack-11.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 12.0"
STACK_YAML=stack-12.0.yaml stack build --no-terminal