co-log-concurrent 0.5.0.0 → 0.5.1.0
raw patch · 2 files changed
+5/−3 lines, 2 filesdep ~basedep ~co-log-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, co-log-core
API changes (from Hackage documentation)
+ Colog.Concurrent.Internal: instance GHC.Show.Show Colog.Concurrent.Internal.Capacity
Files
co-log-concurrent.cabal view
@@ -1,13 +1,13 @@ cabal-version: 2.4 name: co-log-concurrent-version: 0.5.0.0+version: 0.5.1.0 synopsis: Asynchronous backend for co-log library description: Buiding block for writing asynchronous logger pipelines. homepage: https://github.com/qnikst/co-log-concurrent/ bug-reports: https://github.com/qnikst/co-log-concurrent/issues license: MPL-2.0 author: Alexander Vershilov-maintainer: alexander.vershilov@gmail.com+maintainer: alexander.vershilov@sirius.online copyright: 2018-2020 Kowainik, 2020 Alexander Vershilov category: Logging, Contravariant, Comonad stability: provisional@@ -17,7 +17,7 @@ source-repository head type: git- location: https://github.com/qnikst/co-log-concurrent.git+ location: https://github.com/cheopslab/co-log-concurrent.git common common-options build-depends: base >= 4.10.1.0 && < 4.16
src/Colog/Concurrent/Internal.hs view
@@ -25,8 +25,10 @@ -} #if MIN_VERSION_stm(2,5,0) data Capacity = Capacity Natural (Maybe Natural)+ deriving stock Show #else data Capacity = Capacity Int (Maybe Natural)+ deriving stock Show #endif -- | Creates new capacity.