From 5e1338edf934c5170495a8c6048e1659e334cc74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20L=C3=A4ndle?= Date: Tue, 21 May 2024 15:50:17 +0200 Subject: [PATCH] Support ghc-9.10. (#41) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andreas Ländle <969523+alaendle@users.noreply.github.com> --- .github/workflows/ci.yml | 19 ++++++++++++------- co-log-core.cabal | 11 ++++++----- src/Colog/Core.hs | 2 +- src/Colog/Core/Action.hs | 2 +- src/Colog/Core/Class.hs | 2 +- src/Colog/Core/IO.hs | 2 +- src/Colog/Core/Severity.hs | 2 +- 7 files changed, 23 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4e5409..15e6d1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,14 +27,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 @@ -51,9 +54,11 @@ jobs: ghc: 8.2.2 - 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 diff --git a/co-log-core.cabal b/co-log-core.cabal index 90d6f8f..35d9e2c 100644 --- a/co-log-core.cabal +++ b/co-log-core.cabal @@ -27,7 +27,7 @@ license: MPL-2.0 license-file: LICENSE author: Dmitrii Kovanikov maintainer: Kowainik -copyright: 2018-2020 Kowainik, 2021-2023 Co-Log +copyright: 2018-2020 Kowainik, 2021-2024 Co-Log category: Logging, Contravariant, Comonad build-type: Simple stability: stable @@ -40,16 +40,17 @@ tested-with: GHC == 8.2.2 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-core.git common common-options - build-depends: base >= 4.10.1.0 && < 4.20 + build-depends: base >= 4.10.1.0 && < 4.21 ghc-options: -Wall -Wcompat diff --git a/src/Colog/Core.hs b/src/Colog/Core.hs index 4677fe9..dda4722 100644 --- a/src/Colog/Core.hs +++ b/src/Colog/Core.hs @@ -1,6 +1,6 @@ {- | Module : Colog.Core -Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log +Copyright : (c) 2018-2020 Kowainik, 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log Stability : Stable diff --git a/src/Colog/Core/Action.hs b/src/Colog/Core/Action.hs index d8dd2a1..b709061 100644 --- a/src/Colog/Core/Action.hs +++ b/src/Colog/Core/Action.hs @@ -7,7 +7,7 @@ {- | Module : Colog.Core.Action -Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log +Copyright : (c) 2018-2020 Kowainik, 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log Stability : Stable diff --git a/src/Colog/Core/Class.hs b/src/Colog/Core/Class.hs index ddecf89..c3710d9 100644 --- a/src/Colog/Core/Class.hs +++ b/src/Colog/Core/Class.hs @@ -4,7 +4,7 @@ {- | Module : Colog.Core.Class -Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log +Copyright : (c) 2018-2020 Kowainik, 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log Stability : Stable diff --git a/src/Colog/Core/IO.hs b/src/Colog/Core/IO.hs index a3a9bc8..070100e 100644 --- a/src/Colog/Core/IO.hs +++ b/src/Colog/Core/IO.hs @@ -2,7 +2,7 @@ {- | Module : Colog.Core.IO -Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log +Copyright : (c) 2018-2020 Kowainik, 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log Stability : Stable diff --git a/src/Colog/Core/Severity.hs b/src/Colog/Core/Severity.hs index 69b6a4e..a639994 100644 --- a/src/Colog/Core/Severity.hs +++ b/src/Colog/Core/Severity.hs @@ -2,7 +2,7 @@ {- | Module : Colog.Core.Severity -Copyright : (c) 2018-2020 Kowainik, 2021-2023 Co-Log +Copyright : (c) 2018-2020 Kowainik, 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log Stability : Stable