Skip to content

Commit 4db5bf9

Browse files
authored
Added GHC 9.4 to CI build matrix (#61)
1 parent 0c6ea8e commit 4db5bf9

File tree

9 files changed

+25
-22
lines changed

9 files changed

+25
-22
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
ghc-version: ['8.10', '8.8']
25+
ghc-version:
26+
- '8.8'
27+
- '8.10'
28+
- '9.4'
2629
steps:
2730
- name: Checkout code
2831
uses: actions/checkout@v4

rollbar-cli/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: MIT
55
author: "Stack Builders Inc."
66
maintainer: "David Mazarro <dmunuera@stackbuilders.com>"
77
copyright: "2020-present Stack Builders Inc."
8-
tested-with: GHC ==8.8.4, GHC ==8.10.2
8+
tested-with: GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
99

1010
extra-source-files:
1111
- README.md

rollbar-cli/rollbar-cli.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.7.
3+
-- This file has been generated from package.yaml by hpack version 0.36.0.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: c07bf1af31c5b866267fc85ec670e4af1162374603593d10d1d509c0fb6dbc92
7+
-- hash: 7c6698b375ec164c76d2431962f34299163ec2755d348dc931999d649f19669e
88

99
name: rollbar-cli
1010
version: 1.0.0
@@ -20,7 +20,7 @@ copyright: 2020-present Stack Builders Inc.
2020
license: MIT
2121
license-file: LICENSE
2222
tested-with:
23-
GHC ==8.8.4, GHC ==8.10.2
23+
GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
2424
build-type: Simple
2525
extra-source-files:
2626
README.md

rollbar-client/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: MIT
55
author: "Stack Builders Inc."
66
maintainer: "David Mazarro <dmunuera@stackbuilders.com>"
77
copyright: "2020-present Stack Builders Inc."
8-
tested-with: GHC ==8.8.4, GHC ==8.10.2
8+
tested-with: GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
99

1010
extra-source-files:
1111
- README.md
@@ -45,7 +45,7 @@ library:
4545
- mtl >= 2.2 && < 3
4646
- process >= 1.6 && < 2
4747
- req >= 2.1 && < 4
48-
- text >= 1.2 && < 2
48+
- text >= 1.2 && < 2.1
4949
- unordered-containers >= 0.2 && < 1
5050
- yaml >= 0.11 && < 1
5151
exposed-modules:

rollbar-client/rollbar-client.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.7.
3+
-- This file has been generated from package.yaml by hpack version 0.36.0.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 7da5a5954a90f46d394e2473225be065b9af60f16debf983e5f517d50dd7dce7
7+
-- hash: 00c54f5f1b124b9d08c5cbe143b9aef68916a289a7a63068ae10e692a1524f91
88

99
name: rollbar-client
1010
version: 1.0.0
@@ -20,7 +20,7 @@ copyright: 2020-present Stack Builders Inc.
2020
license: MIT
2121
license-file: LICENSE
2222
tested-with:
23-
GHC ==8.8.4, GHC ==8.10.2
23+
GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
2424
build-type: Simple
2525
extra-source-files:
2626
README.md
@@ -73,11 +73,11 @@ executable client-example
7373
base >=4.13 && <5
7474
, rollbar-client
7575
, text
76+
default-language: Haskell2010
7677
if flag(example)
7778
buildable: True
7879
else
7980
buildable: False
80-
default-language: Haskell2010
8181

8282
test-suite spec
8383
type: exitcode-stdio-1.0

rollbar-wai/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: MIT
55
author: "Stack Builders Inc."
66
maintainer: "David Mazarro <dmunuera@stackbuilders.com>"
77
copyright: "2020-present Stack Builders Inc."
8-
tested-with: GHC ==8.8.4, GHC ==8.10.2
8+
tested-with: GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
99

1010
extra-source-files:
1111
- README.md
@@ -45,7 +45,7 @@ library:
4545
- case-insensitive >= 1.2 && < 2
4646
- http-types >= 0.12 && < 1
4747
- rollbar-client >= 1.0 && < 2
48-
- text >= 1.2 && < 2
48+
- text >= 1.2 && < 2.1
4949
- unordered-containers >= 0.2 && < 1
5050
- wai >= 3.2 && < 4
5151
- wai-extra >= 3.0 && < 4

rollbar-wai/rollbar-wai.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.7.
3+
-- This file has been generated from package.yaml by hpack version 0.36.0.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 22fc7c0ac87561c87ece5a7fc5e7488798240e33a8e5f664ddb1359452f6e042
7+
-- hash: b1784f3e45d1f870ae1ea4567c427a2eb4605d9103bde27be65e2ab8698e74ba
88

99
name: rollbar-wai
1010
version: 1.0.0
@@ -21,7 +21,7 @@ copyright: 2020-present Stack Builders Inc.
2121
license: MIT
2222
license-file: LICENSE
2323
tested-with:
24-
GHC ==8.8.4, GHC ==8.10.2
24+
GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
2525
build-type: Simple
2626
extra-source-files:
2727
README.md
@@ -70,11 +70,11 @@ executable wai-example
7070
, rollbar-wai
7171
, wai
7272
, warp
73+
default-language: Haskell2010
7374
if flag(example)
7475
buildable: True
7576
else
7677
buildable: False
77-
default-language: Haskell2010
7878

7979
test-suite spec
8080
type: exitcode-stdio-1.0

rollbar-yesod/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: MIT
55
author: "Stack Builders Inc."
66
maintainer: "David Mazarro <dmunuera@stackbuilders.com>"
77
copyright: "2020-present Stack Builders Inc."
8-
tested-with: GHC ==8.8.4, GHC ==8.10.2
8+
tested-with: GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
99

1010
extra-source-files:
1111
- README.md

rollbar-yesod/rollbar-yesod.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.7.
3+
-- This file has been generated from package.yaml by hpack version 0.36.0.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 07ec6f4e4497c06c6b37555f1514fdd3b8751a689ac2dc6e254a71a79879a00e
7+
-- hash: 928697afe6fc01901eb1e55e4cf239102c43949165f2e912442b44fc521a3dfb
88

99
name: rollbar-yesod
1010
version: 1.0.0
@@ -21,7 +21,7 @@ copyright: 2020-present Stack Builders Inc.
2121
license: MIT
2222
license-file: LICENSE
2323
tested-with:
24-
GHC ==8.8.4, GHC ==8.10.2
24+
GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
2525
build-type: Simple
2626
extra-source-files:
2727
README.md
@@ -66,11 +66,11 @@ executable yesod-example
6666
, rollbar-yesod
6767
, warp >=3.3 && <4
6868
, yesod-core
69+
default-language: Haskell2010
6970
if flag(example)
7071
buildable: True
7172
else
7273
buildable: False
73-
default-language: Haskell2010
7474

7575
test-suite spec
7676
type: exitcode-stdio-1.0

0 commit comments

Comments
 (0)