packages feed

co-log 0.6.1.0 → 0.6.1.1

raw patch · 9 files changed

+24/−14 lines, 9 filesdep ~basedep ~doctestdep ~hedgehogPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, doctest, hedgehog

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -3,6 +3,14 @@ `co-log` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.6.1.1 - January 5, 2025++## What's Changed++* Support ghc-9.10 & ghc-9.12.++**Full Changelog**: https://github.com/co-log/co-log/compare/v0.6.1.0...v0.6.1.1+ ## 0.6.1.0 - Mar 1, 2024  ## What's Changed
co-log.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.4 name:                co-log-version:             0.6.1.0+version:             0.6.1.1 synopsis:            Composable Contravariant Comonadic Logging Library description:     The default implementation of logging based on [co-log-core](http://hackage.haskell.org/package/co-log-core).@@ -15,7 +15,7 @@ license-file:        LICENSE author:              Dmitrii Kovanikov maintainer:          Kowainik <xrom.xkov@gmail.com>-copyright:           2018-2022 Kowainik, 2023-2024 Co-Log+copyright:           2018-2022 Kowainik, 2023-2025 Co-Log category:            Logging, Contravariant, Comonad build-type:          Simple stability:           provisional@@ -25,8 +25,10 @@                      GHC == 9.0.2                      GHC == 9.2.8                      GHC == 9.4.8-                     GHC == 9.6.4-                     GHC == 9.8.2+                     GHC == 9.6.6+                     GHC == 9.8.4+                     GHC == 9.10.1+                     GHC == 9.12.1  flag tutorial   description: Controls if tutorials get build (mainly to avoid building them on hackage).@@ -37,7 +39,7 @@   location:            https://github.com/co-log/co-log.git  common common-options-  build-depends:       base >= 4.14 && < 4.20+  build-depends:       base >= 4.14 && < 4.22    ghc-options:         -Wall                        -Wcompat@@ -153,7 +155,7 @@   import:              common-options   build-depends:       co-log                      , co-log-core-                     , hedgehog >= 1.0 && < 1.5+                     , hedgehog >= 1.0 && < 1.6   hs-source-dirs:      test   main-is:             Property.hs   type:                exitcode-stdio-1.0@@ -167,7 +169,7 @@   hs-source-dirs:      test   main-is:             Doctest.hs -  build-depends:       doctest >= 0.16.0 && < 0.23+  build-depends:       doctest >= 0.16.0 && < 0.24                      , Glob ^>= 0.10.0   ghc-options:         -threaded 
src/Colog.hs view
@@ -1,5 +1,5 @@ {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  This package contains @mtl@ implementation of composable, contravariant and
src/Colog/Actions.hs view
@@ -1,5 +1,5 @@ {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  Logging actions for various text types.
src/Colog/Contra.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE CPP #-}  {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  This module contains 'LogAction' orphan instances of @contravariant@ classes.
src/Colog/Message.hs view
@@ -8,7 +8,7 @@ {-# LANGUAGE TypeFamilies          #-}  {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  This module contains logging messages data types along with the formatting and
src/Colog/Monad.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE InstanceSigs #-}  {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  Core of the @mtl@ implementation.
src/Colog/Pure.hs view
@@ -1,5 +1,5 @@ {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0  Pure implementation of logging action.
src/Colog/Rotation.hs view
@@ -1,5 +1,5 @@ {- |-Copyright:  (c) 2018-2022 Kowainik, 2023-2024 Co-Log+Copyright:  (c) 2018-2022 Kowainik, 2023-2025 Co-Log SPDX-License-Identifier: MPL-2.0 Stability:  experimental