packages feed

conduit 1.3.6 → 1.3.6.1

raw patch · 3 files changed

+8/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog for conduit +## 1.3.6.1++* Forward compatibility with `-Wnoncanonical-monad-instances` becoming an error+ ## 1.3.6  * Avoid dropping upstream items in `mergeSource` [#513](https://github.com/snoyberg/conduit/pull/513)
conduit.cabal view
@@ -1,5 +1,5 @@ Name:                conduit-Version:             1.3.6+Version:             1.3.6.1 Synopsis:            Streaming data processing library. description:     `conduit` is a solution to the streaming data problem, allowing for production,@@ -98,8 +98,8 @@                    , unliftio >= 0.2.4.0     ghc-options:     -Wall -  if os(windows)-    cpp-options:     -DWINDOWS+    if os(windows)+      cpp-options:     -DWINDOWS  --test-suite doctests --    hs-source-dirs: test
src/Data/Conduit/Internal/Conduit.hs view
@@ -148,7 +148,7 @@     {-# INLINE pure #-}     (<*>) = ap     {-# INLINE (<*>) #-}-    (*>) = (>>)+    x *> y = x >>= \_ -> y     {-# INLINE (*>) #-}  instance Monad (ConduitT i o m) where