packages feed

log-effect 1.0.1 → 1.1.0

raw patch · 2 files changed

+8/−7 lines, 2 filesdep ~bytestringdep ~extensible-effectsdep ~monad-controlPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bytestring, extensible-effects, monad-control, text, transformers-base

API changes (from Hackage documentation)

Files

log-effect.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                log-effect-version:             1.0.1+version:             1.1.0 synopsis:            An extensible log effect using extensible-effects description:         Introduce two logging effects to your extensible effects arsenal homepage:            https://github.com/greydot/log-effect@@ -15,18 +15,18 @@ build-type:          Simple extra-source-files:  Changelog.md, README.md cabal-version:       >=1.10-Tested-With:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1+Tested-With:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3  library   exposed-modules:     Control.Eff.Log   -- other-modules:          -- other-extensions:       build-depends:       base >=4.6 && <5.0-                     , bytestring >= 0.10-                     , extensible-effects >= 2.6.0.0-                     , monad-control >= 1.0-                     , text >= 1.2-                     , transformers-base >= 0.4+                     , bytestring >= 0.10 && < 0.11+                     , extensible-effects >= 3.0.0.0 && < 3.1.0.0+                     , monad-control >= 1.0 && < 1.1+                     , text >= 1.2 && < 1.3+                     , transformers-base >= 0.4 && < 0.5   hs-source-dirs:      src   default-language:    Haskell2010 
src/Control/Eff/Log.hs view
@@ -24,6 +24,7 @@  import Control.Applicative   ((<$>), (<*), (<$)) import Control.Eff+import Control.Eff.Extend import Control.Eff.Lift      (Lifted, lift) import Control.Monad         (when) import Control.Monad.Base    (MonadBase(..))