co-log-core 0.3.2.1 → 0.3.2.2
raw patch · 7 files changed
+22/−11 lines, 7 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +10/−0
- co-log-core.cabal +7/−6
- src/Colog/Core.hs +1/−1
- src/Colog/Core/Action.hs +1/−1
- src/Colog/Core/Class.hs +1/−1
- src/Colog/Core/IO.hs +1/−1
- src/Colog/Core/Severity.hs +1/−1
CHANGELOG.md view
@@ -3,6 +3,15 @@ `co-log-core` uses [PVP Versioning][1]. The change log is available [on GitHub][2]. +## 0.3.2.2 — May 21, 2024++## What's Changed+* GA(deps): Bump actions/cache from 3 to 4 by @dependabot in https://github.com/co-log/co-log-core/pull/40+* Support ghc-9.10. by @alaendle in https://github.com/co-log/co-log-core/pull/41+++**Full Changelog**: https://github.com/co-log/co-log-core/compare/v0.3.2.1...v0.3.2.2+ ## 0.3.2.1 — Oct 20, 2023 ## What's Changed@@ -17,6 +26,7 @@ * @Vekhir made their first contribution in https://github.com/co-log/co-log-core/pull/36 **Full Changelog**: https://github.com/co-log/co-log-core/compare/v0.3.2.0...v0.3.2.1+ ## 0.3.2.0 — Nov 2, 2022 - [#25](https://github.com/co-log/co-log-core/issues/25):
co-log-core.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: co-log-core-version: 0.3.2.1+version: 0.3.2.2 synopsis: Composable Contravariant Comonadic Logging Library description: This package provides core types and functions to work with the @LogAction@ data type which is both simple and powerful.@@ -27,7 +27,7 @@ license-file: LICENSE author: Dmitrii Kovanikov maintainer: Kowainik <xrom.xkov@gmail.com>-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 @@ 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
src/Colog/Core.hs view
@@ -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 <xrom.xkov@gmail.com> Stability : Stable
src/Colog/Core/Action.hs view
@@ -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 <xrom.xkov@gmail.com> Stability : Stable
src/Colog/Core/Class.hs view
@@ -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 <xrom.xkov@gmail.com> Stability : Stable
src/Colog/Core/IO.hs view
@@ -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 <xrom.xkov@gmail.com> Stability : Stable
src/Colog/Core/Severity.hs view
@@ -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 <xrom.xkov@gmail.com> Stability : Stable