diff --git a/Test/HTTP.hs b/Test/HTTP.hs
--- a/Test/HTTP.hs
+++ b/Test/HTTP.hs
@@ -1,4 +1,4 @@
-module Test.HTTP (httpTest, session, get, getJSON, withJSON, post, postForm, postJSON, assert, assertEq, assertParse, failTest, debug, Program, Session) where
+module Test.HTTP (httpTest, session, get, getJSON, withJSON, post, postForm, postJSON, assert, assertEq, assertParse, failTest, debug, Program, Session, Url, curlGetString, curlPostString) where
 
 import Network.Curl hiding (curlGetString)
 
@@ -157,7 +157,7 @@
 assertEq assName x y | x == y    = passTest assName
                      | otherwise = failTest assName $ "not equal: "++show x ++" /= "++show y
 
--- | make an assertion in the Parser monad, ofr use with JSON value
+-- | make an assertion in the Parser monad, for use with JSON value
 assertParse :: String      -- ^ assertion name (used for reporting failures
             -> Parser Bool -- ^ Boolean of which we are asserting truth
             -> Session ()
diff --git a/http-test.cabal b/http-test.cabal
--- a/http-test.cabal
+++ b/http-test.cabal
@@ -1,5 +1,5 @@
 Name:                http-test
-Version:             0.1.6
+Version:             0.1.7
 synopsis:            Test framework for HTTP APIs
 Description:         A simple framework for making assertions about the 
                      responses of HTTP servers.
