Skip to content

Commit a6eb637

Browse files
authored
[#25] Support GHC-9.4 (#26)
Resolves #25
1 parent 5d29d63 commit a6eb637

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @chshersh @vrom911
1+
* @vrom911

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,19 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
20-
cabal: ["3.6.2.0"]
20+
cabal: ["3.8"]
2121
ghc:
2222
- "8.2.2"
2323
- "8.4.4"
2424
- "8.6.5"
2525
- "8.8.4"
2626
- "8.10.7"
2727
- "9.0.2"
28-
- "9.2.1"
28+
- "9.2.4"
29+
- "9.4.2"
2930
exclude:
31+
- os: macOS-latest
32+
ghc: 9.2.4
3033
- os: macOS-latest
3134
ghc: 9.0.2
3235
- os: macOS-latest
@@ -40,6 +43,8 @@ jobs:
4043
- os: macOS-latest
4144
ghc: 8.2.2
4245

46+
- os: windows-latest
47+
ghc: 9.2.4
4348
- os: windows-latest
4449
ghc: 9.0.2
4550
- os: windows-latest
@@ -56,7 +61,7 @@ jobs:
5661
steps:
5762
- uses: actions/checkout@v3
5863

59-
- uses: haskell/actions/setup@v2.0
64+
- uses: haskell/actions/setup@v2
6065
id: setup-haskell-cabal
6166
name: Setup Haskell
6267
with:
@@ -71,7 +76,7 @@ jobs:
7176
run: |
7277
cabal freeze
7378
74-
- uses: actions/cache@v3.0.11
79+
- uses: actions/cache@v3
7580
name: Cache ~/.cabal/store
7681
with:
7782
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
`co-log-core` uses [PVP Versioning][1].
44
The change log is available [on GitHub][2].
55

6+
## 0.3.2.0 — Nov 2, 2022
7+
8+
* [#25](https://github.com/co-log/co-log-core/issues/25):
9+
Support GHC-9.4.
10+
611
## 0.3.1.0 — Feb 15, 2022
712

813
* [#7](https://github.com/co-log/co-log-core/issues/7):

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
[![GitHub CI](https://github.com/co-log/co-log-core/workflows/CI/badge.svg)](https://github.com/co-log/co-log-core/actions)
66
[![Hackage][hk-img-core]][hk-core]
7-
[![Stackage LTS][lts-img-core]][lts-core]
87
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](https://github.com/kowainik/co-log/blob/main/LICENSE)
98

109
`co-log-core` is a lightweight package that provides core types and functions to
@@ -49,5 +48,3 @@ will need to set it up with these steps:
4948

5049
[hk-img-core]: https://img.shields.io/hackage/v/co-log-core.svg?logo=haskell
5150
[hk-core]: https://hackage.haskell.org/package/co-log-core
52-
[lts-img-core]: http://stackage.org/package/co-log-core/badge/lts
53-
[lts-core]: http://stackage.org/lts/package/co-log-core

co-log-core.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: co-log-core
3-
version: 0.3.1.0
3+
version: 0.3.2.0
44
synopsis: Composable Contravariant Comonadic Logging Library
55
description:
66
This package provides core types and functions to work with the @LogAction@ data type which is both simple and powerful.
@@ -39,15 +39,15 @@ tested-with: GHC == 8.2.2
3939
GHC == 8.8.4
4040
GHC == 8.10.7
4141
GHC == 9.0.2
42-
GHC == 9.2.1
43-
GHC == 9.2.2
42+
GHC == 9.2.4
43+
GHC == 9.4.2
4444

4545
source-repository head
4646
type: git
4747
location: https://github.com/co-log/co-log-core.git
4848

4949
common common-options
50-
build-depends: base >= 4.10.1.0 && < 4.17
50+
build-depends: base >= 4.10.1.0 && < 4.18
5151

5252
ghc-options: -Wall
5353
-Wcompat

0 commit comments

Comments
 (0)