Drop support for GHC 8.0

This commit is contained in:
mrkkrp 2019-07-02 20:04:17 +02:00 committed by Mark Karpov
parent 0ad71841aa
commit 42af70a0a0
4 changed files with 9 additions and 9 deletions

View File

@ -9,8 +9,6 @@ cache:
matrix:
include:
- env: CABALVER=2.4 GHCVER=8.0.2
addons: {apt: {packages: [cabal-install-2.4,ghc-8.0.2], sources: [hvr-ghc]}}
- env: CABALVER=2.4 GHCVER=8.2.2
addons: {apt: {packages: [cabal-install-2.4,ghc-8.2.2], sources: [hvr-ghc]}}
- env: CABALVER=2.4 GHCVER=8.4.4

View File

@ -3,6 +3,8 @@
* Generalized `decimal`, `binary`, `octal`, and `hexadecimal` parsers in
lexer modules so that they `Num` instead of just `Integral`.
* Dropped support for GHC 8.0.
## Megaparsec 7.0.5
* Dropped support for GHC 7.10.

View File

@ -1,7 +1,7 @@
name: megaparsec-tests
version: 7.0.5
cabal-version: 1.18
tested-with: GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5
tested-with: GHC==8.2.2, GHC==8.4.4, GHC==8.6.5
license: BSD2
license-file: LICENSE.md
author: Megaparsec contributors
@ -22,7 +22,7 @@ flag dev
library
hs-source-dirs: src
build-depends: QuickCheck >= 2.7 && < 2.14
, base >= 4.9 && < 5.0
, base >= 4.10 && < 5.0
, bytestring >= 0.2 && < 0.11
, containers >= 0.5 && < 0.7
, hspec >= 2.0 && < 3.0
@ -61,7 +61,7 @@ test-suite tests
, Text.Megaparsec.StreamSpec
, Text.MegaparsecSpec
build-depends: QuickCheck >= 2.7 && < 2.14
, base >= 4.9 && < 5.0
, base >= 4.10 && < 5.0
, bytestring >= 0.2 && < 0.11
, case-insensitive >= 1.2 && < 1.3
, containers >= 0.5 && < 0.7

View File

@ -1,7 +1,7 @@
name: megaparsec
version: 7.0.5
cabal-version: 1.18
tested-with: GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5
tested-with: GHC==8.2.2, GHC==8.4.4, GHC==8.6.5
license: BSD2
license-file: LICENSE.md
author: Megaparsec contributors,
@ -33,7 +33,7 @@ flag dev
default: False
library
build-depends: base >= 4.9 && < 5.0
build-depends: base >= 4.10 && < 5.0
, bytestring >= 0.2 && < 0.11
, case-insensitive >= 1.2 && < 1.3
, containers >= 0.5 && < 0.7
@ -74,7 +74,7 @@ benchmark bench-speed
main-is: Main.hs
hs-source-dirs: bench/speed
type: exitcode-stdio-1.0
build-depends: base >= 4.9 && < 5.0
build-depends: base >= 4.10 && < 5.0
, containers >= 0.5 && < 0.7
, criterion >= 0.6.2.1 && < 1.6
, deepseq >= 1.3 && < 1.5
@ -90,7 +90,7 @@ benchmark bench-memory
main-is: Main.hs
hs-source-dirs: bench/memory
type: exitcode-stdio-1.0
build-depends: base >= 4.9 && < 5.0
build-depends: base >= 4.10 && < 5.0
, containers >= 0.5 && < 0.7
, deepseq >= 1.3 && < 1.5
, megaparsec