-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support ghc-9.4. * Allow newest polysemy version. * Support GHC-9.6 * Use newer cabal. * Only build documentation on newer compilers. * Updated ghc 9.4 version. --------- Co-authored-by: Andreas Ländle <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ license: MPL-2.0 | |
license-file: LICENSE | ||
author: Dmitrii Kovanikov | ||
maintainer: Kowainik <[email protected]> | ||
copyright: 2019-2020 Kowainik, 2021-2022 Co-Log | ||
copyright: 2019-2020 Kowainik, 2021-2023 Co-Log | ||
category: Logging, Contravariant, Comonad, Effects | ||
build-type: Simple | ||
stability: provisional | ||
|
@@ -32,14 +32,16 @@ tested-with: GHC == 8.4.4 | |
GHC == 8.8.4 | ||
GHC == 8.10.7 | ||
GHC == 9.0.2 | ||
GHC == 9.2.3 | ||
GHC == 9.2.8 | ||
GHC == 9.4.7 | ||
GHC == 9.6.2 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/co-log/co-log-polysemy.git | ||
|
||
common common-options | ||
build-depends: base >= 4.11 && < 4.17 | ||
build-depends: base >= 4.11 && < 4.19 | ||
|
||
ghc-options: -O2 | ||
-Wall | ||
|
@@ -93,7 +95,7 @@ library | |
Colog.Polysemy.Effect | ||
|
||
build-depends: co-log-core ^>= 0.3.0.0 | ||
, polysemy >= 1.2.0.0 && < 1.7 | ||
, polysemy >= 1.2.0.0 && < 1.10 | ||
|
||
executable play-colog-poly | ||
import: common-options | ||
|