diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.4.3.0
+=======
+
+  * Upgraded dependencies' bounds
+
 0.4.2.0
 =======
 
diff --git a/libjenkins.cabal b/libjenkins.cabal
--- a/libjenkins.cabal
+++ b/libjenkins.cabal
@@ -1,5 +1,5 @@
 name:                libjenkins
-version:             0.4.2.0
+version:             0.4.3.0
 synopsis:            Jenkins API interface
 description:         Jenkins API interface. It supports REST and Discovery APIs
 license:             BSD3
@@ -26,7 +26,7 @@
 source-repository this
   type:     git
   location: https://github.com/supki/libjenkins
-  tag:      0.4.2.0
+  tag:      0.4.3.0
 
 library
   default-language:  Haskell2010
@@ -44,11 +44,12 @@
     , conduit       >= 1.0
     , free          >= 4.1
     , http-client   >= 0.2.0.2
-    , http-conduit  >= 2.0 && < 2.1
+    , http-conduit  >= 2.0 && < 2.2
     , http-types    >= 0.8
-    , lens          >= 4.0
+    , lens          >= 4.0.1
     , monad-control >= 0.3
     , network       >= 2.4
+    , resourcet     >= 1.1
     , text          >= 0.11
     , transformers  >= 0.3
     , xml-conduit   >= 1.1
@@ -81,6 +82,7 @@
     , lens
     , monad-control
     , network
+    , resourcet
     , text
     , transformers
     , xml-conduit
diff --git a/src/Jenkins/Rest/Internal.hs b/src/Jenkins/Rest/Internal.hs
--- a/src/Jenkins/Rest/Internal.hs
+++ b/src/Jenkins/Rest/Internal.hs
@@ -20,9 +20,9 @@
 import           Control.Monad.Trans.Class (lift)
 import           Control.Monad.Trans.Control (MonadTransControl(..))
 import           Control.Monad.Trans.Reader (ReaderT, runReaderT, ask, local)
+import           Control.Monad.Trans.Resource (ResourceT)
 import           Control.Monad.Trans.Maybe (MaybeT(..), mapMaybeT)
 import           Data.ByteString.Lazy (ByteString)
-import           Data.Conduit (ResourceT)
 import           Data.Data (Data, Typeable)
 import           Data.Text (Text)
 import qualified Data.Text.Encoding as Text
