packages feed

cassava-streams 0.2.0.0 → 0.3.0.0

raw patch · 6 files changed

+27/−5 lines, 6 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGES.md view
@@ -1,9 +1,20 @@ # Change Log / Release Notes +## 0.3.0.0 (August 11, 2016)++  * Add some additional (convenience) exports from `Data.Csv`. (Thanks+    goes to Florian Hofmann.)++  * Added `data/HLint.hs`++  * Updated to LTS Haskell 6.7+ ## 0.2.0.0 (February 8, 2016)    * Compile with GHC 7.10.3+   * Update dependency versions+   * Build with stack and LTS Haskell 5.2  ## 0.1.1.0 (November 11, 2014)
build/nixpkgs.nix view
@@ -5,7 +5,7 @@    buildInputs = [     # GHC:-    haskell.packages.lts-4_2.ghc+    haskell.packages.lts-6_7.ghc      # Non-Haskell Dependencies:     zlib
build/stack.yaml view
@@ -1,4 +1,4 @@-resolver: lts-5.2+resolver: lts-6.7  packages:   - ../
cassava-streams.cabal view
@@ -1,6 +1,6 @@ -------------------------------------------------------------------------------- name:          cassava-streams-version:       0.2.0.0+version:       0.3.0.0 synopsis:      io-streams interface for the cassava CSV library. license:       BSD3 license-file:  LICENSE@@ -59,7 +59,6 @@    if flag(maintainer)     ghc-options: -Werror-    ghc-prof-options: -prof -auto-all    build-depends: base       >= 4.6   && < 5.0                , bytestring >= 0.10  && < 0.11
src/System/IO/Streams/Csv.hs view
@@ -41,8 +41,20 @@          -- ByteString@ stream into one that encodes records into CSV          -- format before sending them downstream.        , module System.IO.Streams.Csv.Encode++         -- * Convenience Exports+         -- | Export data types from Data.Csv+       , module Data.Csv        ) where  -------------------------------------------------------------------------------- import System.IO.Streams.Csv.Decode import System.IO.Streams.Csv.Encode++import Data.Csv ( HasHeader(..)+                , defaultEncodeOptions+                , defaultDecodeOptions+                , DecodeOptions(..)+                , EncodeOptions(..)+                , Quoting(..)+                )
src/System/IO/Streams/Csv/Decode.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE  DeriveDataTypeable #-}+{-# LANGUAGE DeriveDataTypeable  #-} {-# LANGUAGE ScopedTypeVariables #-}  {-