diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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)
diff --git a/build/nixpkgs.nix b/build/nixpkgs.nix
--- a/build/nixpkgs.nix
+++ b/build/nixpkgs.nix
@@ -5,7 +5,7 @@
 
   buildInputs = [
     # GHC:
-    haskell.packages.lts-4_2.ghc
+    haskell.packages.lts-6_7.ghc
 
     # Non-Haskell Dependencies:
     zlib
diff --git a/build/stack.yaml b/build/stack.yaml
--- a/build/stack.yaml
+++ b/build/stack.yaml
@@ -1,4 +1,4 @@
-resolver: lts-5.2
+resolver: lts-6.7
 
 packages:
   - ../
diff --git a/cassava-streams.cabal b/cassava-streams.cabal
--- a/cassava-streams.cabal
+++ b/cassava-streams.cabal
@@ -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
diff --git a/src/System/IO/Streams/Csv.hs b/src/System/IO/Streams/Csv.hs
--- a/src/System/IO/Streams/Csv.hs
+++ b/src/System/IO/Streams/Csv.hs
@@ -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(..)
+                )
diff --git a/src/System/IO/Streams/Csv/Decode.hs b/src/System/IO/Streams/Csv/Decode.hs
--- a/src/System/IO/Streams/Csv/Decode.hs
+++ b/src/System/IO/Streams/Csv/Decode.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE  DeriveDataTypeable #-}
+{-# LANGUAGE DeriveDataTypeable  #-}
 {-# LANGUAGE ScopedTypeVariables #-}
 
 {-
