co-log-concurrent 0.5.1.0 → 0.5.1.1
raw patch · 2 files changed
+12/−3 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Colog.Concurrent: convertToLogAction :: MonadIO m => BackgroundWorker msg -> LogAction m msg
+ Colog.Concurrent: convertToLogAction :: forall (m :: Type -> Type) msg. MonadIO m => BackgroundWorker msg -> LogAction m msg
- Colog.Concurrent: withBackgroundLogger :: MonadIO m => Capacity -> LogAction IO msg -> IO () -> (LogAction m msg -> IO a) -> IO a
+ Colog.Concurrent: withBackgroundLogger :: forall (m :: Type -> Type) msg a. MonadIO m => Capacity -> LogAction IO msg -> IO () -> (LogAction m msg -> IO a) -> IO a
Files
- CHANGELOG.markdown +4/−0
- co-log-concurrent.cabal +8/−3
CHANGELOG.markdown view
@@ -1,5 +1,9 @@ # Revision history for co-log-concurent +## 0.5.0.1 -- 2022-08-03+ - Bumped co-log-core version to ^>= 0.3.+ - Bumped stack resolver to lts-18.19 (GHC 8.10.7)+ ## 0.5.0.0 -- * API changes:
co-log-concurrent.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: co-log-concurrent-version: 0.5.1.0+version: 0.5.1.1 synopsis: Asynchronous backend for co-log library description: Buiding block for writing asynchronous logger pipelines. homepage: https://github.com/qnikst/co-log-concurrent/@@ -15,12 +15,17 @@ extra-source-files: CHANGELOG.markdown README.markdown +tested-with: + GHC ==9.4.4+ || ==8.10.7+ || ==8.8.4+ source-repository head type: git location: https://github.com/cheopslab/co-log-concurrent.git common common-options- build-depends: base >= 4.10.1.0 && < 4.16+ build-depends: base >= 4.10.1.0 && < 4.20 ghc-options: -Wall -Wincomplete-uni-patterns@@ -55,7 +60,7 @@ exposed-modules: Colog.Concurrent Colog.Concurrent.Internal - build-depends: co-log-core ^>= 0.2.1.0+ build-depends: co-log-core ^>= 0.3 , stm >= 2.4 && < 2.6 default-language: Haskell2010 default-extensions: ConstraintKinds