Skip to content

Commit

Permalink
build: Increase the bound of base
Browse files Browse the repository at this point in the history
  • Loading branch information
kmyk committed Jul 28, 2021
1 parent ae2d5f8 commit aa84525
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Jikka.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ library
build-depends:
ansi-terminal ==0.11.*
, array >=0.5.3 && <0.6
, base ==4.14.*
, base >=4.12 && <5
, containers >=0.6.0 && <0.7
, deepseq >=1.4.4 && <1.5
, mtl >=2.2.2 && <2.3
, text >=1.2.3 && <1.3
, transformers >=0.5.6 && <0.6
, vector >=0.12.0 && <0.13
, vector >=0.12.3 && <0.13
default-language: Haskell2010

executable jikka
Expand All @@ -157,13 +157,13 @@ executable jikka
Jikka
, ansi-terminal ==0.11.*
, array >=0.5.3 && <0.6
, base ==4.14.*
, base >=4.12 && <5
, containers >=0.6.0 && <0.7
, deepseq >=1.4.4 && <1.5
, mtl >=2.2.2 && <2.3
, text >=1.2.3 && <1.3
, transformers >=0.5.6 && <0.6
, vector >=0.12.0 && <0.13
, vector >=0.12.3 && <0.13
default-language: Haskell2010

test-suite jikka-doctest
Expand All @@ -178,14 +178,14 @@ test-suite jikka-doctest
Jikka
, ansi-terminal ==0.11.*
, array >=0.5.3 && <0.6
, base ==4.14.*
, base >=4.12 && <5
, containers >=0.6.0 && <0.7
, deepseq >=1.4.4 && <1.5
, doctest
, mtl >=2.2.2 && <2.3
, text >=1.2.3 && <1.3
, transformers >=0.5.6 && <0.6
, vector >=0.12.0 && <0.13
, vector >=0.12.3 && <0.13
default-language: Haskell2010

test-suite jikka-test
Expand Down Expand Up @@ -246,7 +246,7 @@ test-suite jikka-test
Jikka
, ansi-terminal ==0.11.*
, array >=0.5.3 && <0.6
, base ==4.14.*
, base >=4.12 && <5
, containers >=0.6.0 && <0.7
, deepseq >=1.4.4 && <1.5
, hlint
Expand All @@ -255,5 +255,5 @@ test-suite jikka-test
, ormolu
, text >=1.2.3 && <1.3
, transformers >=0.5.6 && <0.6
, vector >=0.12.0 && <0.13
, vector >=0.12.3 && <0.13
default-language: Haskell2010
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ category: "Compilers/Interpreters"
description: Please see the README on GitHub at <https://github.com/kmyk/Jikka>

dependencies:
- base >= 4.14 && < 4.15
- base >= 4.12 && < 5
- ansi-terminal >= 0.11 && < 0.12
- array >= 0.5.3 && < 0.6
- containers >= 0.6.0 && < 0.7
- deepseq >= 1.4.4 && < 1.5
- mtl >= 2.2.2 && < 2.3
- transformers >= 0.5.6 && < 0.6
- text >= 1.2.3 && < 1.3
- vector >= 0.12.0 && < 0.13
- vector >= 0.12.3 && < 0.13

library:
source-dirs: src
Expand Down

0 comments on commit aa84525

Please sign in to comment.