File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1
1
# co-log
2
2
3
+ [ ![ GitHub CI] ( https://github.com/kowainik/co-log/workflows/CI/badge.svg )] ( https://github.com/kowainik/co-log/actions )
3
4
[ ![ Build status] ( https://img.shields.io/travis/kowainik/co-log.svg?logo=travis )] ( https://travis-ci.org/kowainik/co-log )
4
5
[ ![ 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 )
5
6
[ ![ MPL-2.0 license] ( https://img.shields.io/badge/license-MPL--2.0-blue.svg )] ( https://github.com/kowainik/co-log/blob/master/LICENSE )
6
7
8
+
7
9
| | | | |
8
10
| :------------ | :--------------------------------- | :---------------------------------------- | :---------------------------------------------------- |
9
11
| ` co-log-core ` | [ ![ Hackage] [ hk-img-core ]] [ hk-core ] | [ ![ Stackage LTS] [ lts-img-core ]] [ lts-core ] | [ ![ Stackage Nightly] [ nightly-img-core ]] [ nightly-core ] |
Original file line number Diff line number Diff line change 3
3
` co-log-core ` uses [ PVP Versioning] [ 1 ] .
4
4
The change log is available [ on GitHub] [ 2 ] .
5
5
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
+
6
11
## 0.2.1.0 — Jan 19, 2020
7
12
8
13
* [ #139 ] ( https://github.com/kowainik/co-log/issues/139 ) :
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.4
2
2
name : co-log-core
3
- version : 0.2.1.0
3
+ version : 0.2.1.1
4
4
synopsis : Composable Contravariant Comonadic Logging Library
5
5
description :
6
6
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
36
36
tested-with : GHC == 8.2.2
37
37
GHC == 8.4.4
38
38
GHC == 8.6.5
39
- GHC == 8.8.2
39
+ GHC == 8.8.3
40
+ GHC == 8.10.1
40
41
41
42
source-repository head
42
43
type : git
43
44
location : https://github.com/kowainik/co-log.git
44
45
45
46
common common-options
46
- build-depends : base >= 4.10.1.0 && < 4.14
47
+ build-depends : base >= 4.10.1.0 && < 4.15
47
48
48
49
ghc-options : -Wall
49
- -Wincomplete-uni-patterns
50
- -Wincomplete-record-updates
51
50
-Wcompat
52
51
-Widentities
52
+ -Wincomplete-uni-patterns
53
+ -Wincomplete-record-updates
53
54
-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 )
57
61
ghc-options : -Wmissing-deriving-strategies
58
- -Werror=missing-deriving-strategies
62
+ if impl(ghc >= 8.10 )
63
+ ghc-options : -Wunused-packages
59
64
60
65
default-language : Haskell2010
61
66
default-extensions : ConstraintKinds
You can’t perform that action at this time.
0 commit comments