packages feed

monad-journal 0.2.1.1 → 0.2.1.2

raw patch · 3 files changed

+10/−9 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Control/Monad/Journal.hs view
@@ -1,6 +1,5 @@ {- | Module      :  Control.Monad.Journal-Description :  Journal monad class Copyright   :  (c) Dimitri Sabadie License     :  GPL-3 
Control/Monad/Journal/Class.hs view
@@ -2,7 +2,7 @@  {- | Module      :  Control.Monad.Journal.Class-Description :  `MonadJournal` class+Description :  Journal monad typeclass Copyright   :  (c) Dimitri Sabadie License     :  GPL-3 
monad-journal.cabal view
@@ -1,12 +1,14 @@ name:                monad-journal license:             PublicDomain-version:             0.2.1.1-synopsis:            On-the-fly logging typeclass and monad transformer -description:         This package provides a typeclass for logging situations-                     when you want to deal with the logs on-the-fly.-                     It also exports a monad transformer that enables such a-                     kind of logging in any monad.-homepage:            https://github.com/skypers/monad-journal+version:             0.2.1.2+synopsis:            Pure logger typeclass and monad transformer +description:         This package provides a typeclass for logging in+                     pure code, or more generally, in any kind of+                     context. You can do whatever you want with+                     logs, especially get them, clear them or even+                     sink them through `IO` if you’re logging in+                     `(MonadIO m) => m`.+homepage:            https://github.com/phaazon/monad-journal author:              DimitriSabadie maintainer:          dimitri.sabadie@gmail.com category:            Control