diff --git a/http2-client.cabal b/http2-client.cabal
--- a/http2-client.cabal
+++ b/http2-client.cabal
@@ -1,5 +1,5 @@
 name:                http2-client
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            A native HTTP2 client library.
 description:         Please read the README.ms at the homepage.
 homepage:            https://github.com/lucasdicioccio/http2-client
diff --git a/src/Network/HTTP2/Client.hs b/src/Network/HTTP2/Client.hs
--- a/src/Network/HTTP2/Client.hs
+++ b/src/Network/HTTP2/Client.hs
@@ -3,16 +3,23 @@
 {-# LANGUAGE OverloadedStrings  #-}
 
 module Network.HTTP2.Client (
+    -- * Creating a client
       Http2Client(..)
     , newHttp2Client
     , PushPromiseHandler
+    -- * Starting streams
+    , StreamDefinition(..)
+    , StreamStarter
+    , StreamThread
     , Http2Stream(..)
+    -- * Sending data for POSTs.
     , sendData
-    , StreamThread
-    , _gtfo
-    , StreamDefinition(..)
+    -- * Flow control
     , IncomingFlowControl(..)
     , OutgoingFlowControl(..)
+    -- * Misc.
+    , _gtfo
+    -- * Convenience re-exports
     , module Network.HTTP2.Client.FrameConnection
     , module Network.Socket
     , module Network.TLS
