diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# 0.1.2.2
+
+* Export nothing if network-uri >= 2.6.2 instead of 2.7.0.
+
+# 0.1.2.1
+
+* The contents have been merged into network-uri, so the module is now
+  empty if you use network-uri. But you can still use this module at the
+  latest version if you are requiring the older network-uri for some reason.
+
 # 0.1.1.0
 
 * Added `relativeReference`.
diff --git a/network-uri-static.cabal b/network-uri-static.cabal
--- a/network-uri-static.cabal
+++ b/network-uri-static.cabal
@@ -1,5 +1,5 @@
 name: network-uri-static
-version: 0.1.2.1
+version: 0.1.2.2
 synopsis: A small utility to declare type-safe static URIs
 description:
   This library helps you declare type-safe static URIs by parsing URIs at compile time.
@@ -42,12 +42,12 @@
                     ViewPatterns
   if flag(defer-to-network-uri)
     build-depends: base >= 4.7 && < 5,
-                   network-uri >= 2.7 && < 3,
+                   network-uri >= 2.6.2 && < 3,
                    template-haskell >= 2.9 && < 3
   else
     exposed-modules: Network.URI.Static
     build-depends: base >= 4.7 && < 5,
-                   network-uri >= 2.5 && < 2.7,
+                   network-uri >= 2.5 && < 2.6.2,
                    template-haskell >= 2.9 && < 3
   hs-source-dirs: src
   default-language: Haskell2010
diff --git a/src/Network/URI/Static.hs b/src/Network/URI/Static.hs
--- a/src/Network/URI/Static.hs
+++ b/src/Network/URI/Static.hs
@@ -1,6 +1,6 @@
 {-# LANGUAGE CPP, RecordWildCards, TemplateHaskell, ViewPatterns #-}
 
-#if MIN_VERSION_network_uri(2,7,0)
+#if MIN_VERSION_network_uri(2,6,2)
 module Network.URI.Static () where
 #else
 
