Skip to content

Commit 5e7c438

Browse files
chshershvrom911
andauthored
[#186] Support GHC-8.10 (#188)
* [#186] Support GHC-8.10 Resolves #186 * Update .travis.yml Co-Authored-By: Veronika Romashkina <[email protected]> * Unblock co-log-polysemy Co-authored-by: Veronika Romashkina <[email protected]>
1 parent b6eb673 commit 5e7c438

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# co-log
22

3+
[![GitHub CI](https://github.com/kowainik/co-log/workflows/CI/badge.svg)](https://github.com/kowainik/co-log/actions)
34
[![Build status](https://img.shields.io/travis/kowainik/co-log.svg?logo=travis)](https://travis-ci.org/kowainik/co-log)
45
[![Windows build](https://ci.appveyor.com/api/projects/status/github/kowainik/co-log?branch=master&svg=true)](https://ci.appveyor.com/project/kowainik/co-log)
56
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](https://github.com/kowainik/co-log/blob/master/LICENSE)
67

8+
79
| | | | |
810
| :------------ | :--------------------------------- | :---------------------------------------- | :---------------------------------------------------- |
911
| `co-log-core` | [![Hackage][hk-img-core]][hk-core] | [![Stackage LTS][lts-img-core]][lts-core] | [![Stackage Nightly][nightly-img-core]][nightly-core] |

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.1 — Apr 18, 2020
7+
8+
* [#186](https://github.com/kowainik/co-log/issues/186):
9+
Support GHC-8.10.1.
10+
611
## 0.2.1.0 — Jan 19, 2020
712

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

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

Lines changed: 14 additions & 9 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.0
3+
version: 0.2.1.1
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.
@@ -36,26 +36,31 @@ extra-doc-files: CHANGELOG.md
3636
tested-with: GHC == 8.2.2
3737
GHC == 8.4.4
3838
GHC == 8.6.5
39-
GHC == 8.8.2
39+
GHC == 8.8.3
40+
GHC == 8.10.1
4041

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

4546
common common-options
46-
build-depends: base >= 4.10.1.0 && < 4.14
47+
build-depends: base >= 4.10.1.0 && < 4.15
4748

4849
ghc-options: -Wall
49-
-Wincomplete-uni-patterns
50-
-Wincomplete-record-updates
5150
-Wcompat
5251
-Widentities
52+
-Wincomplete-uni-patterns
53+
-Wincomplete-record-updates
5354
-Wredundant-constraints
54-
-fhide-source-paths
55-
-freverse-errors
56-
if impl(ghc >= 8.8.1)
55+
if impl(ghc >= 8.2)
56+
ghc-options: -fhide-source-paths
57+
if impl(ghc >= 8.4)
58+
ghc-options: -Wmissing-export-lists
59+
-Wpartial-fields
60+
if impl(ghc >= 8.8)
5761
ghc-options: -Wmissing-deriving-strategies
58-
-Werror=missing-deriving-strategies
62+
if impl(ghc >= 8.10)
63+
ghc-options: -Wunused-packages
5964

6065
default-language: Haskell2010
6166
default-extensions: ConstraintKinds

0 commit comments

Comments
 (0)