Skip to content

Commit b935188

Browse files
authored
GHC 9 support (#223)
* Allow base 4.15, add tested with GHC 9.0.1 * Bump to typerep-map ^>= 0.4 * Allow polysemy 1.6.0.0 Closes #210 * Bump versions, add CHANGELOG entries * ci: add GHC 9.0.1 * Allow doctest 0.18 for co-log-core * ci: use haskell/actions/setup The old action is now deprecated in favor of https://github.com/haskell/actions * ci: cabal 3.4
1 parent c45fc43 commit b935188

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

co-log-core/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.2.1.2 — <M> <d>, 2021
7+
8+
* [#223](https://github.com/kowainik/co-log/pulls/223):
9+
Support GHC-9.0.1.
10+
611
## 0.2.1.1 — Apr 18, 2020
712

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

co-log-core/co-log-core.cabal

Lines changed: 4 additions & 3 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.2.1.1
3+
version: 0.2.1.2
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.
@@ -38,13 +38,14 @@ tested-with: GHC == 8.2.2
3838
GHC == 8.6.5
3939
GHC == 8.8.3
4040
GHC == 8.10.1
41+
GHC == 9.0.1
4142

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

4647
common common-options
47-
build-depends: base >= 4.10.1.0 && < 4.15
48+
build-depends: base >= 4.10.1.0 && < 4.16
4849

4950
ghc-options: -Wall
5051
-Wcompat
@@ -91,5 +92,5 @@ test-suite doctest
9192
type: exitcode-stdio-1.0
9293
hs-source-dirs: test
9394
main-is: Doctests.hs
94-
build-depends: doctest >= 0.16.0 && < 0.18
95+
build-depends: doctest >= 0.16.0 && < 0.19
9596
, Glob ^>= 0.10.0

0 commit comments

Comments
 (0)