Skip to content

Commit

Permalink
Support ghc-9.10. (#24)
Browse files Browse the repository at this point in the history
* Support ghc-9.10.
* We already have 2024.
* Use up-to-date haskell setup.
  • Loading branch information
alaendle authored Jun 8, 2024
1 parent 14c7461 commit 8a844d4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,17 @@ jobs:
- '8.10.7'
- '9.0.2'
- '9.2.8'
- '9.4.7'
- '9.6.3'
- '9.8.1'
- '9.4.8'
- '9.6.5'
- '9.8.2'
- '9.10.1'
exclude:
- os: macOS-latest
ghc: 9.6.3
ghc: 9.8.2
- os: macOS-latest
ghc: 9.4.7
ghc: 9.6.5
- os: macOS-latest
ghc: 9.4.8
- os: macOS-latest
ghc: 9.2.8
- os: macOS-latest
Expand All @@ -48,9 +51,11 @@ jobs:
ghc: 8.4.4

- os: windows-latest
ghc: 9.6.3
ghc: 9.8.2
- os: windows-latest
ghc: 9.6.5
- os: windows-latest
ghc: 9.4.7
ghc: 9.4.8
- os: windows-latest
ghc: 9.2.8
- os: windows-latest
Expand All @@ -66,7 +71,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
Expand Down Expand Up @@ -100,6 +105,6 @@ jobs:
cabal test all
- name: Documentation
if: ${{ contains(fromJSON('["9.4.7", "9.6.3"]'), matrix.ghc) }}
if: ${{ contains(fromJSON('["9.4.8", "9.6.5"]'), matrix.ghc) }}
run: |
cabal haddock
11 changes: 6 additions & 5 deletions co-log-polysemy.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ license: MPL-2.0
license-file: LICENSE
author: Dmitrii Kovanikov
maintainer: Kowainik <xrom.xkov@gmail.com>
copyright: 2019-2020 Kowainik, 2021-2023 Co-Log
copyright: 2019-2020 Kowainik, 2021-2024 Co-Log
category: Logging, Contravariant, Comonad, Effects
build-type: Simple
stability: provisional
Expand All @@ -33,16 +33,17 @@ tested-with: GHC == 8.4.4
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.7
GHC == 9.6.3
GHC == 9.8.1
GHC == 9.4.8
GHC == 9.6.5
GHC == 9.8.2
GHC == 9.10.1

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

common common-options
build-depends: base >= 4.11 && < 4.20
build-depends: base >= 4.11 && < 4.21

ghc-options: -O2
-Wall
Expand Down
2 changes: 1 addition & 1 deletion src/Colog/Polysemy.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{- |
Module : Colog.Polysemy
Copyright : (c) 2019-2020 Kowainik
(c) 2021-2023 Co-Log
(c) 2021-2024 Co-Log
SPDX-License-Identifier : MPL-2.0
Maintainer : Co-Log <xrom.xkov@gmail.com>
Stability : Provisional
Expand Down
2 changes: 1 addition & 1 deletion src/Colog/Polysemy/Effect.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- |
Module : Colog.Polysemy.Effect
Copyright : (c) 2019-2020 Kowainik
(c) 2021-2023 Co-Log
(c) 2021-2024 Co-Log
SPDX-License-Identifier : MPL-2.0
Maintainer : Co-Log <xrom.xkov@gmail.com>
Stability : Provisional
Expand Down

0 comments on commit 8a844d4

Please sign in to comment.