diff --git a/ftp-client-conduit.cabal b/ftp-client-conduit.cabal
--- a/ftp-client-conduit.cabal
+++ b/ftp-client-conduit.cabal
@@ -1,16 +1,16 @@
-name: ftp-client-conduit
-version: 0.5.0.0
 cabal-version: >=1.10
-build-type: Simple
+name: ftp-client-conduit
+version: 0.5.0.1
 license: PublicDomain
 license-file: LICENSE
 maintainer: mrobinson7627@gmail.com
+author: Matthew Robinson
 homepage: https://github.com/mr/ftp-client
 synopsis: Transfer file with FTP and FTPS with Conduit
 description:
     ftp-client is a library for communicating with an FTP server. It works over both a clear channel or TLS. ftp-client-conduit uses conduit to stream files and data in constant space.
 category: Web
-author: Matthew Robinson
+build-type: Simple
 extra-source-files:
     README.md
 
@@ -21,24 +21,24 @@
 library
     exposed-modules:
         Network.FTP.Client.Conduit
+    hs-source-dirs: src
+    default-language: Haskell2010
+    default-extensions: RankNTypes OverloadedStrings
     build-depends:
         base >=4.7 && <5,
         ftp-client ==0.5.*,
-        conduit-combinators ==1.1.*,
-        bytestring >=0.10.8.1 && <0.11,
-        resourcet ==1.1.*,
-        connection >=0.2.7 && <0.3,
+        conduit >=1.1 && <1.4,
+        bytestring >=0.10.8.2 && <0.11,
+        resourcet ==1.2.*,
+        connection >=0.2.8 && <0.3,
         exceptions >=0.8.3 && <0.9
-    default-language: Haskell2010
-    default-extensions: RankNTypes OverloadedStrings
-    hs-source-dirs: src
 
 test-suite ftp-conduit-test
     type: exitcode-stdio-1.0
     main-is: Spec.hs
-    build-depends:
-        base >=4.9.1.0 && <4.10,
-        ftp-clientconduit -any
-    default-language: Haskell2010
     hs-source-dirs: test
+    default-language: Haskell2010
     ghc-options: -threaded -rtsopts -with-rtsopts=-N
+    build-depends:
+        base >=4.10.1.0 && <4.11,
+        ftp-clientconduit -any
