packages feed

conduit-combinators 1.0.3 → 1.0.3.1

raw patch · 3 files changed

+7/−1 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Conduit: runIdentity :: Identity a -> a
+ Conduit: [runIdentity] :: Identity a -> a

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+# 1.0.3.1++* Support for QuickCheck 2.8.2+ # 1.0.3  * sourceRandomWith [#19](https://github.com/fpco/conduit-combinators/pull/19)
conduit-combinators.cabal view
@@ -1,5 +1,5 @@ name:                conduit-combinators-version:             1.0.3+version:             1.0.3.1 synopsis:            Commonly used conduit functions, for both chunked and unchunked data description:         Provides a replacement for Data.Conduit.List, as well as a convenient Conduit module. homepage:            https://github.com/fpco/conduit-combinators
test/StreamSpec.hs view
@@ -223,8 +223,10 @@                 (sinkVectorNS n :: forall o. StreamConduitM Int o IO.IO (Vector Int))                 (\xs -> sourceList xs $$ preventFusion (sinkVectorN n)) +#if !MIN_VERSION_QuickCheck(2,8,2) instance Arbitrary a => Arbitrary (Seq a) where     arbitrary = Seq.fromList <$> arbitrary+#endif  repeatML :: Monad m => m a -> m [a] repeatML = Prelude.sequence . Prelude.repeat