Skip to content

Commit 5ceb8d9

Browse files
sjakobimergify[bot]
authored andcommitted
dhall-lsp-server: Fix lower bound on dhall (#1495)
* dhall-lsp-server: Fix lower bound on dhall … as reported in #1494. * Require base >= 4.11 Previously there were build failures with GHC-8.2 and 8.0 due to `(<>)` being out of scope.
1 parent 9d16602 commit 5ceb8d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ library
4545
build-depends:
4646
aeson >= 1.3.1.1 && < 1.5
4747
, aeson-pretty >= 0.8.7 && < 0.9
48-
, base >= 4.7 && < 5
48+
, base >= 4.11 && < 5
4949
, bytestring >= 0.10.8.2 && < 0.11
5050
, containers >= 0.5.11.0 && < 0.7
5151
, data-default >= 0.7.1.1 && < 0.8
5252
, directory >= 1.2.2.0 && < 1.4
53-
, dhall >= 1.26.0 && < 1.28
53+
, dhall >= 1.27.0 && < 1.28
5454
, dhall-json >= 1.4 && < 1.6
5555
, filepath >= 1.4.2 && < 1.5
5656
, haskell-lsp >= 0.15.0.0 && < 0.17

0 commit comments

Comments
 (0)