Skip to content

Commit df6dd9f

Browse files
andreasabelMikolaj
authored andcommitted
Fix #253: allow GHC-9.0 (base-4.15)
1 parent aba33cd commit df6dd9f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
ghc: ['8.10.6', '8.8.4', '8.6.5']
13+
ghc: ['9.0.2', '8.10.7', '8.8.4', '8.6.5']
1414
os: [ubuntu-latest, macOS-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v2

example-client/example-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ executable example-client
2626
main-is: Main.hs
2727
other-modules: Prelude ExampleClient.Options
2828

29-
build-depends: base >= 4.5 && < 4.15,
29+
build-depends: base >= 4.5 && < 4.16,
3030
bytestring >= 0.9,
3131
directory >= 1.1,
3232
filepath >= 1.2,

hackage-repo-tool/hackage-repo-tool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ executable hackage-repo-tool
5656

5757
-- For boot libraries we try to accomodate the versions bundled with
5858
-- the respective GHC release
59-
build-depends: base >= 4.5 && < 4.15,
59+
build-depends: base >= 4.5 && < 4.16,
6060
bytestring >= 0.9 && < 0.12,
6161
directory >= 1.1 && < 1.4,
6262
filepath >= 1.3 && < 1.5,

hackage-security-HTTP/hackage-security-HTTP.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ flag use-network-uri
3131

3232
library
3333
exposed-modules: Hackage.Security.Client.Repository.HttpLib.HTTP
34-
build-depends: base >= 4.5 && < 4.15,
34+
build-depends: base >= 4.5 && < 4.16,
3535
bytestring >= 0.9 && < 0.12,
3636
HTTP >= 4000.2.19 && < 4000.4,
3737
mtl >= 2.1 && < 2.3,

hackage-security-curl/hackage-security-curl.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ flag use-network-uri
2323

2424
library
2525
exposed-modules: Hackage.Security.Client.Repository.HttpLib.Curl
26-
build-depends: base >= 4.5 && < 4.15,
26+
build-depends: base >= 4.5 && < 4.16,
2727
bytestring >= 0.9,
2828
process >= 1.1,
2929
hackage-security

hackage-security-http-client/hackage-security-http-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ flag use-network-uri
2222

2323
library
2424
exposed-modules: Hackage.Security.Client.Repository.HttpLib.HttpClient
25-
build-depends: base >= 4.5 && < 4.15,
25+
build-depends: base >= 4.5 && < 4.16,
2626
bytestring >= 0.9,
2727
http-client >= 0.4 && < 0.7,
2828
http-types >= 0.8,

hackage-security/hackage-security.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ library
115115
Hackage.Security.Util.TypedEmbedded
116116
MyPrelude
117117
-- We support ghc 7.4 (bundled with Cabal 1.14) and up
118-
build-depends: base >= 4.5 && < 4.17,
118+
build-depends: base >= 4.5 && < 4.16,
119119
base16-bytestring >= 0.1.1 && < 1.1,
120120
base64-bytestring >= 1.0 && < 1.3,
121121
bytestring >= 0.9 && < 0.12,

0 commit comments

Comments
 (0)