From 7e7858dd2cc438f2211c85e2df25a88d9fe9f975 Mon Sep 17 00:00:00 2001 From: lucasvreis Date: Wed, 31 Jan 2024 01:38:12 -0300 Subject: [PATCH] bump min GHC version --- .github/workflows/build.yml | 2 +- org-cli/org-cli.cabal | 2 +- org-exporters/org-exporters.cabal | 2 +- org-parser/org-parser.cabal | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f9713c..92697cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macOS-latest] - ghc: ['9.2', '9.4'] + ghc: ['9.4', '9.6'] cabal: ['3.10'] include: - ghc: '9.4' diff --git a/org-cli/org-cli.cabal b/org-cli/org-cli.cabal index 6f3a173..22f419b 100644 --- a/org-cli/org-cli.cabal +++ b/org-cli/org-cli.cabal @@ -26,7 +26,7 @@ executable horg main-is: org-cli.hs other-modules: Options build-depends: - , base >=4.15 && <4.19 + , base >=4.17.2 && <4.19 , directory , filepath , megaparsec diff --git a/org-exporters/org-exporters.cabal b/org-exporters/org-exporters.cabal index 66ec27d..82df475 100644 --- a/org-exporters/org-exporters.cabal +++ b/org-exporters/org-exporters.cabal @@ -55,7 +55,7 @@ common common-options default-language: GHC2021 build-depends: , aeson - , base >=4.15 && <4.19 + , base >=4.17.2 && <4.19 , bytestring >=0.11.4 && <0.12 , citeproc >=0.8.1 && <0.9 , filepath >=1.4.2 && <1.5 diff --git a/org-parser/org-parser.cabal b/org-parser/org-parser.cabal index 9412038..7681367 100644 --- a/org-parser/org-parser.cabal +++ b/org-parser/org-parser.cabal @@ -31,14 +31,14 @@ source-repository head common common-options default-language: GHC2021 build-depends: - , aeson >=2.1.2 && <2.2 - , base >=4.15 && <4.19 - , containers >=0.6.5 && <0.7 + , aeson >=2.1.2 && <2.2 + , base >=4.17.2 && <4.19 + , containers >=0.6.5 && <0.7 , ix-cat , kind-generics-th - , megaparsec >=9.3.0 && <9.4 - , relude >=1.2.0 && <1.3 - , text >=1.2.5 && <2.1 + , megaparsec >=9.3.0 && <9.4 + , relude >=1.2.0 && <1.3 + , text >=1.2.5 && <2.1 mixins: base hiding (Prelude),