diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,10 @@
+# ChangeLog for yesod-test
+
+## 1.6.6.1
+
+* Documentation fixes
+* Support for network 3
+
 ## 1.6.6
 
 * Add utility functions to modify cookies [$1570](https://github.com/yesodweb/yesod/pull/1570)
diff --git a/Yesod/Test.hs b/Yesod/Test.hs
--- a/Yesod/Test.hs
+++ b/Yesod/Test.hs
@@ -148,7 +148,13 @@
 import qualified Data.ByteString.Lazy.Char8 as BSL8
 import qualified Test.HUnit as HUnit
 import qualified Network.HTTP.Types as H
+
+#if MIN_VERSION_network(3, 0, 0)
+import qualified Network.Socket as Sock
+#else
 import qualified Network.Socket.Internal as Sock
+#endif
+
 import Data.CaseInsensitive (CI)
 import Network.Wai
 import Network.Wai.Test hiding (assertHeader, assertNoHeader, request)
@@ -212,7 +218,7 @@
 -- Since 1.2.0
 type YesodSpec site = Writer [YesodSpecTree site] ()
 
--- | Internal data structure, corresponding to hspec\'s 'YesodSpecTree'.
+-- | Internal data structure, corresponding to hspec\'s "SpecTree".
 --
 -- Since 1.2.0
 data YesodSpecTree site
diff --git a/yesod-test.cabal b/yesod-test.cabal
--- a/yesod-test.cabal
+++ b/yesod-test.cabal
@@ -1,5 +1,5 @@
 name:               yesod-test
-version:            1.6.6
+version:            1.6.6.1
 license:            MIT
 license-file:       LICENSE
 author:             Nubis <nubis@woobiz.com.ar>
