packages feed

streaming-conduit 0.1.2.0 → 0.1.2.1

raw patch · 3 files changed

+8/−4 lines, 3 filesdep ~streamingPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: streaming

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for streaming-conduit +## 0.1.2.1 -- 2018-02-08++* Bump dependency on streaming to support 0.2.0.0.+ ## 0.1.2.0 -- 2017-06-12  * Better Stream -> Conduit conversions, allowing for more fusion and
README.md view
@@ -1,7 +1,7 @@ streaming-conduit ================= -[![Hackage](https://img.shields.io/hackage/v/streaming-conduit.svg)](https://hackage.haskell.org/package/streaming-conduit) [![Build Status](https://travis-ci.org/ivan-m/streaming-conduit.svg)](https://travis-ci.org/ivan-m/streaming-conduit)+[![Hackage](https://img.shields.io/hackage/v/streaming-conduit.svg)](https://hackage.haskell.org/package/streaming-conduit) [![Build Status](https://travis-ci.org/haskell-streaming/streaming-conduit.svg)](https://travis-ci.org/haskell-streaming/streaming-conduit)  Bidirectional support between the [streaming] and [conduit] libraries. 
streaming-conduit.cabal view
@@ -1,5 +1,5 @@ name:                streaming-conduit-version:             0.1.2.0+version:             0.1.2.1 synopsis:            Bidirectional support between the streaming and conduit libraries description:         Allow interoperability between the streaming and conduit data streaming ecosystems. license:             MIT@@ -15,14 +15,14 @@  source-repository head   type:     git-  location: https://github.com/ivan-m/streaming-conduit.git+  location: https://github.com/haskell-streaming/streaming-conduit.git  library   exposed-modules:     Streaming.Conduit   build-depends:       base >=4.6 && <5                      , bytestring                      , conduit >= 1.2.11 && < 1.3-                     , streaming >= 0.1.3.0 && < 0.2+                     , streaming >= 0.1.3.0 && < 0.3                      , streaming-bytestring == 0.1.*                      , transformers >= 0.2   hs-source-dirs:      src