Skip to content

Commit 8f45a52

Browse files
tbidneGabriella439
andauthored
Relax upper bounds (#2659)
* Relax optparse-applicative upper bound * Relax containers upper bound * Relax QuickCheck upper bound * Relax data-default upper bound --------- Co-authored-by: gabby <GenuineGabriella@gmail.com>
1 parent 574f830 commit 8f45a52

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

dhall-bash/dhall-bash.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Library
2929
Build-Depends:
3030
base >= 4.11.0.0 && < 5 ,
3131
bytestring < 0.13,
32-
containers < 0.8 ,
32+
containers < 0.9 ,
3333
dhall >= 1.42.0 && < 1.43,
3434
neat-interpolation < 0.6 ,
3535
shell-escape < 0.3 ,
@@ -48,7 +48,7 @@ Executable dhall-to-bash
4848
bytestring ,
4949
dhall ,
5050
dhall-bash ,
51-
optparse-applicative >= 0.14.0.0 && < 0.19,
51+
optparse-applicative >= 0.14.0.0 && < 0.20,
5252
text
5353
GHC-Options: -Wall
5454
Default-Language: Haskell2010

dhall-csv/dhall-csv.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Library
7979
base >= 4.12.0.0 && < 5 ,
8080
bytestring < 0.13,
8181
cassava >= 0.5.0.0 && < 0.6 ,
82-
containers >= 0.5.9 && < 0.8 ,
82+
containers >= 0.5.9 && < 0.9 ,
8383
either ,
8484
exceptions >= 0.8.3 && < 0.11,
8585
dhall >= 1.39.0 && < 1.43,

dhall-docs/dhall-docs.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Library
6868
base >= 4.11.0.0 && < 5 ,
6969
base16-bytestring >= 1.0.0.0 ,
7070
bytestring < 0.13,
71-
containers ,
71+
containers >= 0.5.11.0 && < 0.9 ,
7272
cryptohash-sha256 ,
7373
directory >= 1.3.0.0 && < 1.4 ,
7474
dhall >= 1.38.0 && < 1.43,
@@ -86,7 +86,7 @@ Library
8686
text >= 0.11.1.0 && < 2.2 ,
8787
transformers >= 0.2.0.0 && < 0.7 ,
8888
mtl >= 2.2.1 && < 2.4 ,
89-
optparse-applicative >= 0.14.0.0 && < 0.19
89+
optparse-applicative >= 0.14.0.0 && < 0.20
9090
Exposed-Modules:
9191
Dhall.Docs
9292
Dhall.Docs.Core

dhall-json/dhall-json.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ Library
4242
aeson-pretty >= 0.8.0 && < 0.9 ,
4343
aeson-yaml >= 1.1.0 && < 1.2 ,
4444
bytestring < 0.13,
45-
containers >= 0.5.9 && < 0.8 ,
45+
containers >= 0.5.9 && < 0.9 ,
4646
dhall >= 1.42.0 && < 1.43,
4747
exceptions >= 0.8.3 && < 0.11,
4848
filepath < 1.6 ,
4949
microlens >= 0.4.14.0 && < 0.5 ,
50-
optparse-applicative >= 0.14.0.0 && < 0.19,
50+
optparse-applicative >= 0.14.0.0 && < 0.20,
5151
prettyprinter >= 1.7.0 && < 1.8 ,
5252
scientific >= 0.3.0.0 && < 0.4 ,
5353
text >= 0.11.1.0 && < 2.2 ,

dhall-lsp-server/dhall-lsp-server.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ library
4747
, base >= 4.11 && < 5
4848
, bytestring >= 0.10.8.2 && < 0.13
4949
, co-log-core >= 0.3.1.0 && < 0.4
50-
, containers >= 0.5.11.0 && < 0.8
51-
, data-default >= 0.7.1.1 && < 0.8
50+
, containers >= 0.5.11.0 && < 0.9
51+
, data-default >= 0.7.1.1 && < 0.9
5252
, directory >= 1.2.2.0 && < 1.4
5353
, dhall >= 1.38.0 && < 1.43
5454
, dhall-json >= 1.4 && < 1.8
@@ -79,7 +79,7 @@ executable dhall-lsp-server
7979
build-depends:
8080
base >= 4.11 && < 5
8181
, dhall-lsp-server
82-
, optparse-applicative
82+
, optparse-applicative >= 0.14.0.0 && < 0.20
8383
default-language: Haskell2010
8484
GHC-Options: -Wall -fwarn-incomplete-uni-patterns
8585

@@ -93,7 +93,7 @@ Test-Suite doctest
9393
directory >= 1.3.1.5 && < 1.4,
9494
filepath < 1.6,
9595
doctest >= 0.7.0 ,
96-
QuickCheck
96+
QuickCheck >= 2.14 && < 2.17
9797
Other-Extensions: OverloadedStrings RecordWildCards
9898
Default-Language: Haskell2010
9999

dhall-nix/dhall-nix.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Library
2727
Hs-Source-Dirs: src
2828
Build-Depends:
2929
base >= 4.11.0.0 && < 5 ,
30-
containers < 0.8 ,
30+
containers < 0.9 ,
3131
data-fix < 0.4 ,
3232
dhall >= 1.42 && < 1.43,
3333
hnix >= 0.16 && < 0.18,

dhall-nixpkgs/dhall-nixpkgs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Executable dhall-to-nixpkgs
3131
, megaparsec >= 7.0.0 && < 10
3232
, mmorph < 1.3
3333
, neat-interpolation < 0.6
34-
, optparse-applicative >= 0.14.0.0 && < 0.19
34+
, optparse-applicative >= 0.14.0.0 && < 0.20
3535
, prettyprinter >= 1.7.0 && < 1.8
3636
, text >= 0.11.1.0 && < 2.2
3737
, transformers >= 0.2.0.0 && < 0.7

dhall-openapi/dhall-openapi.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Executable openapi-to-dhall
4545
filepath >= 1.4 && < 1.6 ,
4646
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
4747
megaparsec >= 7.0 && < 10 ,
48-
optparse-applicative >= 0.14.3.0 && < 0.19,
48+
optparse-applicative >= 0.14.3.0 && < 0.20,
4949
parser-combinators ,
5050
prettyprinter ,
5151
sort ,
@@ -78,7 +78,7 @@ Library
7878
Build-Depends:
7979
base >= 4.11.0.0 && < 5 ,
8080
aeson >= 1.0.0.0 && < 2.3 ,
81-
containers >= 0.5.8.0 && < 0.8 ,
81+
containers >= 0.5.8.0 && < 0.9 ,
8282
dhall >= 1.38.0 && < 1.43 ,
8383
prettyprinter >= 1.7.0 && < 1.8 ,
8484
microlens >= 0.4 && < 0.5 ,

dhall-toml/dhall-toml.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ Library
3939
filepath < 1.6 ,
4040
tomland >= 1.3.2.0 && < 1.4 ,
4141
text >= 0.11.1.0 && < 2.2 ,
42-
containers >= 0.5.9 && < 0.8 ,
42+
containers >= 0.5.9 && < 0.9 ,
4343
unordered-containers >= 0.2 && < 0.3 ,
4444
prettyprinter >= 1.7.0 && < 1.8 ,
45-
optparse-applicative >= 0.14 && < 0.19
45+
optparse-applicative >= 0.14 && < 0.20
4646
Exposed-Modules:
4747
Dhall.DhallToToml
4848
Dhall.TomlToDhall

dhall-yaml/dhall-yaml.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Library
3838
bytestring < 0.13,
3939
dhall >= 1.31.0 && < 1.43,
4040
dhall-json >= 1.6.0 && < 1.8 ,
41-
optparse-applicative >= 0.14.0.0 && < 0.19,
41+
optparse-applicative >= 0.14.0.0 && < 0.20,
4242
text >= 0.11.1.0 && < 2.2 ,
4343
vector
4444
Exposed-Modules:

0 commit comments

Comments
 (0)