diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 2.2.0.1
+
+* Doc fixes
+
 ## 2.2.0
 
 * Upgrade to http-client 0.5
diff --git a/Network/HTTP/Simple.hs b/Network/HTTP/Simple.hs
--- a/Network/HTTP/Simple.hs
+++ b/Network/HTTP/Simple.hs
@@ -6,17 +6,15 @@
 -- available at
 -- <https://github.com/commercialhaskell/jump/blob/master/doc/http-client.md>.
 --
--- Important note: 'Request' is an instance of 'IsString', and therefore
--- recommended usage is to turn on @OverloadedStrings@, e.g.
---
--- @@@
--- {-# LANGUAGE OverloadedStrings #-}
--- import Network.HTTP.Simple
--- import qualified Data.ByteString.Lazy.Char8 as L8
+-- Important note: 'H.Request' is an instance of 'Data.String.IsString', and
+-- therefore recommended usage is to turn on @OverloadedStrings@, e.g.
 --
--- main :: IO ()
--- main = httpLBS "http://example.com" >>= L8.putStrLn
--- @@@
+-- > {-# LANGUAGE OverloadedStrings #-}
+-- > import Network.HTTP.Simple
+-- > import qualified Data.ByteString.Lazy.Char8 as L8
+-- >
+-- > main :: IO ()
+-- > main = httpLBS "http://example.com" >>= L8.putStrLn
 module Network.HTTP.Simple
     ( -- * Perform requests
       httpLBS
diff --git a/http-conduit.cabal b/http-conduit.cabal
--- a/http-conduit.cabal
+++ b/http-conduit.cabal
@@ -1,5 +1,5 @@
 name:            http-conduit
-version:         2.2.0
+version:         2.2.0.1
 license:         BSD3
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
@@ -31,7 +31,7 @@
                  , http-types            >= 0.7
                  , lifted-base           >= 0.1
                  , http-client           >= 0.5     && < 0.6
-                 , http-client-tls       >= 0.2.4
+                 , http-client-tls       >= 0.3     && < 0.4
                  , monad-control
                  , mtl
                  , exceptions            >= 0.6
