log-warper 1.1.4 → 1.2.0
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- System.Wlog.CanLog: dispatchMessage :: (CanLog m, MonadTrans t, t n ~ m, CanLog n) => LoggerName -> Severity -> Text -> t n ()
+ System.Wlog.CanLog: dispatchMessage :: (CanLog m, MonadTrans t, t n ~ m, CanLog n) => LoggerName -> Severity -> Text -> m ()
Files
- CHANGES.md +5/−0
- log-warper.cabal +1/−1
- src/System/Wlog/CanLog.hs +1/−1
CHANGES.md view
@@ -1,3 +1,8 @@+1.2.0+=====++* Uses universum-0.6.1.+ 1.1.4 =====
log-warper.cabal view
@@ -1,5 +1,5 @@ name: log-warper-version: 1.1.4+version: 1.2.0 synopsis: Flexible, configurable, monadic and pretty logging homepage: https://github.com/serokell/log-warper license: MIT
src/System/Wlog/CanLog.hs view
@@ -71,7 +71,7 @@ => LoggerName -> Severity -> Text- -> t n ()+ -> m () dispatchMessage name sev t = lift $ dispatchMessage name sev t instance CanLog IO where