Skip to content

Commit

Permalink
[#25] Support GHC-9.4 (#26)
Browse files Browse the repository at this point in the history
Resolves #25
  • Loading branch information
vrom911 authored Nov 2, 2022
1 parent 5d29d63 commit a6eb637
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @chshersh @vrom911
* @vrom911
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
cabal: ["3.6.2.0"]
cabal: ["3.8"]
ghc:
- "8.2.2"
- "8.4.4"
- "8.6.5"
- "8.8.4"
- "8.10.7"
- "9.0.2"
- "9.2.1"
- "9.2.4"
- "9.4.2"
exclude:
- os: macOS-latest
ghc: 9.2.4
- os: macOS-latest
ghc: 9.0.2
- os: macOS-latest
Expand All @@ -40,6 +43,8 @@ jobs:
- os: macOS-latest
ghc: 8.2.2

- os: windows-latest
ghc: 9.2.4
- os: windows-latest
ghc: 9.0.2
- os: windows-latest
Expand All @@ -56,7 +61,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: haskell/actions/setup@v2.0
- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
Expand All @@ -71,7 +76,7 @@ jobs:
run: |
cabal freeze
- uses: actions/cache@v3.0.11
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
`co-log-core` uses [PVP Versioning][1].
The change log is available [on GitHub][2].

## 0.3.2.0 — Nov 2, 2022

* [#25](https://github.com/co-log/co-log-core/issues/25):
Support GHC-9.4.

## 0.3.1.0 — Feb 15, 2022

* [#7](https://github.com/co-log/co-log-core/issues/7):
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

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

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

[hk-img-core]: https://img.shields.io/hackage/v/co-log-core.svg?logo=haskell
[hk-core]: https://hackage.haskell.org/package/co-log-core
[lts-img-core]: http://stackage.org/package/co-log-core/badge/lts
[lts-core]: http://stackage.org/lts/package/co-log-core
8 changes: 4 additions & 4 deletions co-log-core.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: co-log-core
version: 0.3.1.0
version: 0.3.2.0
synopsis: Composable Contravariant Comonadic Logging Library
description:
This package provides core types and functions to work with the @LogAction@ data type which is both simple and powerful.
Expand Down Expand Up @@ -39,15 +39,15 @@ tested-with: GHC == 8.2.2
GHC == 8.8.4
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.1
GHC == 9.2.2
GHC == 9.2.4
GHC == 9.4.2

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

common common-options
build-depends: base >= 4.10.1.0 && < 4.17
build-depends: base >= 4.10.1.0 && < 4.18

ghc-options: -Wall
-Wcompat
Expand Down

0 comments on commit a6eb637

Please sign in to comment.