Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@ jobs:
compilerVersion: 8.8.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-8.6.5
compilerKind: ghc
compilerVersion: 8.6.5
setup-method: ghcup
allow-failure: false
fail-fast: false
steps:
- name: apt-get install
Expand Down
5 changes: 5 additions & 0 deletions cabal-install-parsers/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.3

- Drop support for GHC prior 8.8.4
- Use `Cabal-syntax-3.14`

## 0.6.2

- Drop support for GHC prior 8.6.5
Expand Down
31 changes: 15 additions & 16 deletions cabal-install-parsers/cabal-install-parsers.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: cabal-install-parsers
version: 0.6.2
version: 0.6.3
synopsis: Utilities to work with cabal-install files
description:
@cabal-install-parsers@ provides parsers for @cabal-install@ files:
Expand All @@ -25,8 +25,7 @@ maintainer: [email protected], [email protected]
category: Development
build-type: Simple
tested-with:
GHC ==8.6.5
|| ==8.8.4
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
Expand Down Expand Up @@ -66,19 +65,19 @@ library

-- GHC-boot libraries
build-depends:
, base >=4.12 && <4.21
, binary ^>=0.8.6.0
, bytestring ^>=0.10.8.2 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.12.0.0
, containers ^>=0.6.0.1 || ^>=0.7
, deepseq ^>=1.4.2.0 || ^>=1.5.0.0
, directory ^>=1.3.0.0
, filepath ^>=1.4.1.1 || ^>=1.5.2.0
, parsec ^>=3.1.13.0
, pretty ^>=1.1.3.3
, text ^>=1.2.3.0 || ^>=2.0.1 || ^>=2.1
, time ^>=1.8.0.2 || ^>=1.9.3 || ^>=1.11.1.1 || ^>=1.12.2
, transformers ^>=0.5.2.0 || ^>=0.6.1.0
, base >=4.13.0.0 && <4.21
, binary ^>=0.8.7.0
, bytestring ^>=0.10.10.1 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.14.2.0
, containers ^>=0.6.2.1 || ^>=0.7
, deepseq ^>=1.4.4.0 || ^>=1.5.0.0
, directory ^>=1.3.6.0
, filepath ^>=1.4.2.1 || ^>=1.5.2.0
, parsec ^>=3.1.14.0
, pretty ^>=1.1.3.6
, text ^>=1.2.4.0 || ^>=2.0.1 || ^>=2.1
, time ^>=1.9.3 || ^>=1.11.1.1 || ^>=1.12.2
, transformers ^>=0.5.6.2 || ^>=0.6.1.0

-- extra dependencies
build-depends:
Expand Down
31 changes: 15 additions & 16 deletions haskell-ci.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ maintainer: [email protected]
category: Development
build-type: Simple
tested-with:
GHC ==8.6.5
|| ==8.8.4
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
Expand Down Expand Up @@ -155,28 +154,28 @@ library haskell-ci-internal
ViewPatterns

build-depends:
, base >=4.12 && <4.21
, binary ^>=0.8.5.1
, bytestring ^>=0.10.8.1 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.12.0.0
, containers ^>=0.6.0.1 || ^>=0.7
, deepseq ^>=1.4.2.0 || ^>=1.5.0.0
, directory ^>=1.3.0.0
, filepath ^>=1.4.1.1 || ^>=1.5.2.0
, base >=4.13 && <4.21
, binary ^>=0.8.7.0
, bytestring ^>=0.10.10.1 || ^>=0.11.1.0 || ^>=0.12.0.2
, Cabal-syntax ^>=3.14.2.0
, containers ^>=0.6.2.1 || ^>=0.7
, deepseq ^>=1.4.4.0 || ^>=1.5.0.0
, directory ^>=1.3.6.0
, filepath ^>=1.4.2.1 || ^>=1.5.2.0
, mtl ^>=2.2.2 || ^>=2.3.1
, parsec ^>=3.1.13.0
, pretty ^>=1.1.3.3
, process ^>=1.4.3.0 || ^>=1.6.1.0
, text ^>=1.2.3.0 || ^>=2.0.1 || ^>=2.1
, transformers ^>=0.5.2.0 || ^>=0.6.1.0
, parsec ^>=3.1.14.0
, pretty ^>=1.1.3.6
, process ^>=1.6.9.0
, text ^>=1.2.4.0 || ^>=2.0.1 || ^>=2.1
, transformers ^>=0.5.6.2 || ^>=0.6.1.0

-- other dependencies
build-depends:
, aeson ^>=2.2.0.0
, attoparsec ^>=0.14.1
, base-compat ^>=0.14.0
, base16-bytestring ^>=1.0.1.0
, cabal-install-parsers ^>=0.6.1.1
, cabal-install-parsers ^>=0.6.3
, cryptohash-sha256 ^>=0.11.101.0
, exceptions ^>=0.10.0
, generic-lens-lite ^>=0.1
Expand Down
2 changes: 1 addition & 1 deletion haskell-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

CFG_CABAL_STORE_CACHE=""
CFG_CABAL_REPO_CACHE=""
CFG_JOBS="9.10.2 9.8.4 9.6.7 9.4.8 9.2.8 9.0.2 8.10.7 8.8.4 8.6.5"
CFG_JOBS="9.10.2 9.8.4 9.6.7 9.4.8 9.2.8 9.0.2 8.10.7 8.8.4"
CFG_CABAL_UPDATE=false

SCRIPT_NAME=$(basename "$0")
Expand Down
Loading