diff --git a/Network/Factual/API.hs b/Network/Factual/API.hs
--- a/Network/Factual/API.hs
+++ b/Network/Factual/API.hs
@@ -10,6 +10,9 @@
   , makeMultiRequest
     -- * Write functions
   , sendWrite
+    -- * Debug functions
+  , debugQuery
+  , debugWrite
     -- * The hoauth Token type
   , Token(..)
   ) where
@@ -69,6 +72,18 @@
   let request = generatePostRequest fullpath (body write)
   makeRequest' token request
 
+-- | This function takes a query and prints out the path for debugging purposes
+debugQuery :: (Query query) => query -> IO ()
+debugQuery query = putStrLn ("Query path: " ++ basePath ++ toPath query)
+
+-- | This function takes a write and prints out the path and body for debugging
+--   purposes.
+debugWrite :: (Write write) => write -> IO ()
+debugWrite write = do
+  putStrLn ("Write path: " ++ basePath ++ path write)
+  putStrLn "Write body:"
+  putStrLn $ body write
+
 -- The following helper functions aid the exported API functions
 makeRawRequest' :: Token -> String -> IO Response
 makeRawRequest' token queryString = do
@@ -106,7 +121,7 @@
 extractJSON = fromJust . decode . rspPayload
 
 headersList :: [(String, String)]
-headersList = [("X-Factual-Lib", "factual-haskell-driver-0.3.2")]
+headersList = [("X-Factual-Lib", "factual-haskell-driver-0.3.3")]
 
 basePath :: String
 basePath = "http://api.v3.factual.com"
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -2,6 +2,31 @@
 
 This is a Haskell driver for [Factual's public API](http://developer.factual.com/display/docs/Factual+Developer+APIs+Version+3).
 
+# Features
+
+* Read Queries
+  * Places US
+  * Restaurants US
+  * Hotels US
+  * Global Places
+  * Healthcare Providers
+  * World Geographies
+  * Products CPG
+  * Products Crosswalk
+  * Monetize
+  * Custom Tables
+* Crosswalk Queries
+* Facets Queries
+* Geocode Queries
+* Geopulse Queries
+* Resolve Queries
+* Schema Queries
+* Multi Queries
+* Raw Read Queries
+* Parametric Search
+* Geo Filters
+* Query Debugging
+
 # Installation
 
 ## Prerequisites
diff --git a/factual-api.cabal b/factual-api.cabal
--- a/factual-api.cabal
+++ b/factual-api.cabal
@@ -1,5 +1,5 @@
 name:            factual-api
-version:         0.3.2
+version:         0.3.3
 license:         BSD3
 license-file:    LICENSE.txt
 category:        API, Web
