packages feed

Frames-streamly 0.1.0.1 → 0.1.0.2

raw patch · 4 files changed

+5/−5 lines, 4 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Frames.Streamly.CSV: streamTableEither :: forall rs t m. (MonadIO m, IsStream t, RMap rs, ReadRec rs) => t m Text -> t m (Rec (Either Text :. ElField) rs)
+ Frames.Streamly.CSV: streamTableEither :: forall rs t m. (Monad m, IsStream t, RMap rs, ReadRec rs) => t m Text -> t m (Rec (Either Text :. ElField) rs)

Files

Changelog.md view
@@ -1,4 +1,4 @@-v0.1.0.1+v0.1.0.2 * Relaxed some ```MonadIO``` constraints to ```Monad``` in Frames.Streamly.CSV  v0.1.0.0
Frames-streamly.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 80103b542d89f67cc39bfb6ed003277bb356af7e394e2fd6fe3fa6df05454eef+-- hash: f129113aa17f26529351746660f5b3ada35ea09fec7866ca91d25902f08ac8be  name:           Frames-streamly-version:        0.1.0.1+version:        0.1.0.2 synopsis:       A streamly layer for Frames I/O description:    More information is available in the <https://github.com/adamConnerSax/Frames-streamly/blob/master/Readme.md readme>.' category:       Data
Readme.md view
@@ -1,4 +1,4 @@-# Frames-streamly- v 0.1.0.0+# Frames-streamly- v 0.1.0.2  [![Build Status][travis-badge]][travis] [![Hackage][hackage-badge]][hackage]
src/Frames/Streamly/CSV.hs view
@@ -474,7 +474,7 @@ -- NB:  If the inferred/given @rs@ is different from the actual file row-type, things will go awry. streamTableEither     :: forall rs t m.-    (MonadIO m+    (Monad m     , IsStream t     , Vinyl.RMap rs     , Frames.ReadRec rs)