diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,6 @@
+0.7.2.0
+* Remove some dependency upper bounds for forward compatibility.
+
 0.7.1.0
 * Add MonadFail instance for Parser. [PR 38](https://github.com/ozataman/csv-conduit/pull/38)
 
diff --git a/csv-conduit.cabal b/csv-conduit.cabal
--- a/csv-conduit.cabal
+++ b/csv-conduit.cabal
@@ -1,5 +1,5 @@
 Name:                csv-conduit
-Version:             0.7.1.0
+Version:             0.7.2.0
 Synopsis:            A flexible, fast, conduit-based CSV parser library for Haskell.
 Homepage:            http://github.com/ozataman/csv-conduit
 License:             BSD3
@@ -8,7 +8,7 @@
 Maintainer:          Ozgun Ataman <ozataman@gmail.com>
 Category:            Data, Conduit, CSV, Text
 Build-type:          Simple
-Cabal-version:       >= 1.9.2
+Cabal-version:       >= 1.10
 Tested-with:         GHC == 7.6.1
 Description:
   CSV files are the de-facto standard in many situations involving data transfer,
@@ -65,6 +65,7 @@
   manual: True
 
 library
+  default-language: Haskell2010
   exposed-modules:
       Data.CSV.Conduit
       Data.CSV.Conduit.Types
@@ -82,7 +83,7 @@
       attoparsec             >= 0.10
     , base                   >= 4 && < 5
     , bytestring
-    , conduit                >= 1.2.8 && < 2.0
+    , conduit                >= 1.2.8
     , conduit-extra
     , containers             >= 0.3
     , exceptions             >= 0.3
@@ -102,10 +103,11 @@
 
   if impl(ghc >= 7.2.1)
     cpp-options: -DGENERICS
-    build-depends: ghc-prim >= 0.2 && < 0.6
+    build-depends: ghc-prim >= 0.2
 
 
 test-suite test
+  default-language: Haskell2010
   type: exitcode-stdio-1.0
   main-is: Test.hs
   ghc-options: -Wall
