From d73ff13cd49010bfdcf20bf4cc03969f2589332d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20G=C3=A9lineau?= Date: Fri, 9 Feb 2024 22:51:14 -0500 Subject: [PATCH] bump lower bounds to match what CI tests --- haskell-awk.cabal | 76 +++++++++++++++++++++++------------------------ package.yaml | 54 ++++++++++++++++----------------- 2 files changed, 64 insertions(+), 66 deletions(-) diff --git a/haskell-awk.cabal b/haskell-awk.cabal index c466865..0cc0aa6 100644 --- a/haskell-awk.cabal +++ b/haskell-awk.cabal @@ -3,8 +3,6 @@ cabal-version: 1.24 -- This file has been generated from package.yaml by hpack version 0.35.2. -- -- see: https://github.com/sol/hpack --- --- hash: 186d50c3926564fc359e64329c322981465bb7d43c4c1c3fb8f2edfa8c60a5f0 name: haskell-awk version: 1.2.0.1 @@ -49,8 +47,8 @@ source-repository head custom-setup setup-depends: - Cabal >=1.24.2.0 - , base >=4.9 && <5 + Cabal >=2.0.1.1 + , base >=4.10.1.0 && <5 , cabal-doctest >=1.0.4 library @@ -67,11 +65,11 @@ library runtime ghc-options: -Wall build-depends: - base >=4.9 && <5 - , bytestring >=0.10.8.1 - , containers >=0.5.7.1 - , ghc >=8.0.2 - , list-t >=1 + base >=4.10.1.0 && <5 + , bytestring >=0.10.8.2 + , containers >=0.5.10.2 + , ghc >=8.2.2 + , list-t >=1.0.0.1 , stringsearch >=0.3.6.6 default-language: Haskell2010 if os(windows) @@ -120,21 +118,21 @@ executable hawk src ghc-options: -Wall build-depends: - base >=4.9 && <5 - , bytestring >=0.10.8.1 - , containers >=0.5.7.1 - , directory >=1.3.0.0 - , extra >=1.5.3 - , filelock >=0.1.0.1 - , filepath >=1.4.1.1 - , ghc >=8.0.2 + base >=4.10.1.0 && <5 + , bytestring >=0.10.8.2 + , containers >=0.5.10.2 + , directory >=1.3.0.2 + , extra >=1.6.2 + , filelock >=0.1.1.2 + , filepath >=1.4.1.2 + , ghc >=8.2.2 , haskell-awk - , haskell-src-exts >=1.18.2 + , haskell-src-exts >=1.19.1 , hint >=0.7.0 - , list-t >=1 + , list-t >=1.0.0.1 , mtl >=2.2.1 - , process >=1.4.3.0 - , template-haskell >=2.11.1.0 + , process >=1.6.1.0 + , template-haskell >=2.12.0.0 , transformers >=0.5.2.0 default-language: Haskell2010 if os(windows) @@ -192,32 +190,32 @@ test-suite reference tests ghc-options: -Wall build-depends: - HUnit >=1.5.0.0 - , aeson >=1.1.2.0 - , attoparsec >=0.13.1.0 - , base >=4.9 && <5 - , bytestring >=0.10.8.1 - , containers >=0.5.7.1 - , directory >=1.3.0.0 - , doctest >=0.11.4 + HUnit >=1.6.0.0 + , aeson >=1.2.3.0 + , attoparsec >=0.13.2.0 + , base >=4.10.1.0 && <5 + , bytestring >=0.10.8.2 + , containers >=0.5.10.2 + , directory >=1.3.0.2 + , doctest >=0.13.0 , easy-file >=0.2.1 , exceptions >=0.8.3 - , extra >=1.5.3 - , filelock >=0.1.0.1 - , filepath >=1.4.1.1 - , ghc >=8.0.2 + , extra >=1.6.2 + , filelock >=0.1.1.2 + , filepath >=1.4.1.2 + , ghc >=8.2.2 , haskell-awk - , haskell-src-exts >=1.18.2 + , haskell-src-exts >=1.19.1 , hint >=0.7.0 , hspec >=2.4.4 - , list-t >=1 + , list-t >=1.0.0.1 , mtl >=2.2.1 - , process >=1.4.3.0 - , template-haskell >=2.11.1.0 - , temporary >=1.2.1 + , process >=1.6.1.0 + , template-haskell >=2.12.0.0 + , temporary >=1.2.1.1 , test-framework >=0.8.1.1 , test-framework-hunit >=0.3.0.2 - , time >=1.6.0.1 + , time >=1.8.0.2 , transformers >=0.5.2.0 default-language: Haskell2010 if os(windows) diff --git a/package.yaml b/package.yaml index fb5ad01..80ddb9f 100644 --- a/package.yaml +++ b/package.yaml @@ -19,11 +19,11 @@ extra-source-files: ghc-options: -Wall dependencies: - - base >= 4.9 && < 5 - - bytestring >= 0.10.8.1 - - containers >= 0.5.7.1 - - ghc >= 8.0.2 - - list-t >= 1 + - base >= 4.10.1.0 && < 5 + - bytestring >= 0.10.8.2 + - containers >= 0.5.10.2 + - ghc >= 8.2.2 + - list-t >= 1.0.0.1 # Windows is not currently supported, see issue #248 when: @@ -35,8 +35,8 @@ when: custom-setup: dependencies: - - base >= 4.9 && < 5 - - Cabal >= 1.24.2.0 + - base >= 4.10.1.0 && < 5 + - Cabal >= 2.0.1.1 - cabal-doctest >= 1.0.4 library: @@ -48,16 +48,16 @@ executables: hawk: main: Main.hs dependencies: - - directory >= 1.3.0.0 - - extra >= 1.5.3 - - filelock >= 0.1.0.1 - - filepath >= 1.4.1.1 + - directory >= 1.3.0.2 + - extra >= 1.6.2 + - filelock >= 0.1.1.2 + - filepath >= 1.4.1.2 - haskell-awk - - haskell-src-exts >= 1.18.2 + - haskell-src-exts >= 1.19.1 - hint >= 0.7.0 - mtl >= 2.2.1 - - process >= 1.4.3.0 - - template-haskell >= 2.11.1.0 + - process >= 1.6.1.0 + - template-haskell >= 2.12.0.0 - transformers >= 0.5.2.0 source-dirs: src @@ -68,27 +68,27 @@ tests: - tests main: RunTests.hs dependencies: - - aeson >= 1.1.2.0 - - attoparsec >= 0.13.1.0 - - directory >= 1.3.0.0 - - doctest >= 0.11.4 + - aeson >= 1.2.3.0 + - attoparsec >= 0.13.2.0 + - directory >= 1.3.0.2 + - doctest >= 0.13.0 - easy-file >= 0.2.1 - exceptions >= 0.8.3 - - extra >= 1.5.3 - - filelock >= 0.1.0.1 - - filepath >= 1.4.1.1 + - extra >= 1.6.2 + - filelock >= 0.1.1.2 + - filepath >= 1.4.1.2 - haskell-awk - - haskell-src-exts >= 1.18.2 + - haskell-src-exts >= 1.19.1 - hint >= 0.7.0 - hspec >= 2.4.4 - - HUnit >= 1.5.0.0 + - HUnit >= 1.6.0.0 - mtl >= 2.2.1 - - process >= 1.4.3.0 - - template-haskell >= 2.11.1.0 - - temporary >= 1.2.1 + - process >= 1.6.1.0 + - template-haskell >= 2.12.0.0 + - temporary >= 1.2.1.1 - test-framework >= 0.8.1.1 - test-framework-hunit >= 0.3.0.2 - - time >= 1.6.0.1 + - time >= 1.8.0.2 - transformers >= 0.5.2.0 tested-with: