Skip to content

Commit 8eead56

Browse files
authored
Adjust megaparsec upper bounds for SemVer (#2312)
Context: mrkkrp/megaparsec#469
1 parent 0362a1b commit 8eead56

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

dhall-docs/dhall-docs.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ Library
7272
lens-family-core >= 1.0.0 && < 2.2 ,
7373
lucid >= 2.9.12 && < 2.10,
7474
mmark >= 0.0.7.0 && < 0.8 ,
75-
megaparsec >= 7 && < 9.3 ,
75+
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
76+
megaparsec >= 7 && < 10 ,
7677
memory < 0.17,
7778
path >= 0.7.0 && < 0.10,
7879
path-io >= 1.6.0 && < 1.7 ,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ library
5656
, rope-utf16-splay >= 0.3.1.0 && < 0.4
5757
, hslogger >= 1.2.10 && < 1.4
5858
, lens >= 4.16.1 && < 5.1
59-
, megaparsec >= 7.0.2 && < 9.3
59+
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
60+
, megaparsec >= 7.0.2 && < 10
6061
, mtl >= 2.2.2 && < 2.3
6162
, network-uri >= 2.6.1.0 && < 2.7
6263
, prettyprinter >= 1.7.0 && < 1.8

dhall-nixpkgs/dhall-nixpkgs.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Executable dhall-to-nixpkgs
2323
, foldl < 1.5
2424
, hnix >= 0.10.1 && < 0.15
2525
, lens-family-core >= 1.0.0 && < 2.2
26-
, megaparsec >= 7.0.0 && < 9.3
26+
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
27+
, megaparsec >= 7.0.0 && < 10
2728
, mmorph < 1.3
2829
, neat-interpolation < 0.6
2930
, optparse-applicative >= 0.14.0.0 && < 0.17

dhall-openapi/dhall-openapi.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ Executable openapi-to-dhall
4343
dhall ,
4444
dhall-openapi ,
4545
filepath >= 1.4 && < 1.5 ,
46-
megaparsec >= 7.0 && < 9.3 ,
46+
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
47+
megaparsec >= 7.0 && < 10 ,
4748
optparse-applicative >= 0.14.3.0 && < 0.17 ,
4849
parser-combinators ,
4950
prettyprinter ,

dhall/dhall.cabal

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ Library
495495
haskeline >= 0.7.2.1 && < 0.9 ,
496496
hashable >= 1.2 && < 1.4 ,
497497
lens-family-core >= 1.0.0 && < 2.2 ,
498-
megaparsec >= 7 && < 9.3 ,
498+
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
499+
megaparsec >= 7 && < 10 ,
499500
memory >= 0.14 && < 0.17,
500501
mmorph < 1.3 ,
501502
mtl >= 2.2.1 && < 2.3 ,

0 commit comments

Comments
 (0)