Skip to content

Commit 68753d3

Browse files
committed
Support ghc-9.12.
1 parent 18d37b4 commit 68753d3

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,17 @@ jobs:
2727
- '9.0.2'
2828
- '9.2.8'
2929
- '9.4.8'
30-
- '9.6.5'
31-
- '9.8.2'
30+
- '9.6.6'
31+
- '9.8.4'
3232
- '9.10.1'
33+
- '9.12.1'
3334
exclude:
3435
- os: macOS-latest
35-
ghc: 9.8.2
36+
ghc: 9.10.1
3637
- os: macOS-latest
37-
ghc: 9.6.5
38+
ghc: 9.8.4
39+
- os: macOS-latest
40+
ghc: 9.6.6
3841
- os: macOS-latest
3942
ghc: 9.4.8
4043
- os: macOS-latest
@@ -51,9 +54,11 @@ jobs:
5154
ghc: 8.4.4
5255

5356
- os: windows-latest
54-
ghc: 9.8.2
57+
ghc: 9.10.1
58+
- os: windows-latest
59+
ghc: 9.8.4
5560
- os: windows-latest
56-
ghc: 9.6.5
61+
ghc: 9.6.6
5762
- os: windows-latest
5863
ghc: 9.4.8
5964
- os: windows-latest
@@ -68,6 +73,7 @@ jobs:
6873
ghc: 8.6.5
6974
- os: windows-latest
7075
ghc: 8.4.4
76+
7177
steps:
7278
- uses: actions/checkout@v4
7379

co-log-polysemy.cabal

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license: MPL-2.0
2121
license-file: LICENSE
2222
author: Dmitrii Kovanikov
2323
maintainer: Kowainik <xrom.xkov@gmail.com>
24-
copyright: 2019-2020 Kowainik, 2021-2024 Co-Log
24+
copyright: 2019-2020 Kowainik, 2021-2025 Co-Log
2525
category: Logging, Contravariant, Comonad, Effects
2626
build-type: Simple
2727
stability: provisional
@@ -34,16 +34,17 @@ tested-with: GHC == 8.4.4
3434
GHC == 9.0.2
3535
GHC == 9.2.8
3636
GHC == 9.4.8
37-
GHC == 9.6.5
38-
GHC == 9.8.2
37+
GHC == 9.6.6
38+
GHC == 9.8.4
3939
GHC == 9.10.1
40+
GHC == 9.12.1
4041

4142
source-repository head
4243
type: git
4344
location: https://github.com/co-log/co-log-polysemy.git
4445

4546
common common-options
46-
build-depends: base >= 4.11 && < 4.21
47+
build-depends: base >= 4.11 && < 4.22
4748

4849
ghc-options: -O2
4950
-Wall

shell.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
with (import <nixpkgs> {});
2+
mkShell {
3+
buildInputs = [
4+
gmp
5+
];
6+
}

src/Colog/Polysemy.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{- |
22
Module : Colog.Polysemy
33
Copyright : (c) 2019-2020 Kowainik
4-
(c) 2021-2024 Co-Log
4+
(c) 2021-2025 Co-Log
55
SPDX-License-Identifier : MPL-2.0
66
Maintainer : Co-Log <xrom.xkov@gmail.com>
77
Stability : Provisional

src/Colog/Polysemy/Effect.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{- |
44
Module : Colog.Polysemy.Effect
55
Copyright : (c) 2019-2020 Kowainik
6-
(c) 2021-2024 Co-Log
6+
(c) 2021-2025 Co-Log
77
SPDX-License-Identifier : MPL-2.0
88
Maintainer : Co-Log <xrom.xkov@gmail.com>
99
Stability : Provisional

0 commit comments

Comments
 (0)