diff --git a/NEWS b/NEWS
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,30 @@
 
 
 
+funbot-client 0.1.0.1 -- 2015-09-19
+===================================
+
+General, build and documentation changes:
+
+* (None)
+
+New APIs, features and enhancements:
+
+* (None)
+
+Bug fixes:
+
+* (None)
+
+Dependency changes:
+
+* Allow older dependency version to be chosen by a flag, for wider
+  compatibility with other packages
+
+
+
+
+
 funbot-client 0.1.0.0 -- 2015-09-19
 ===================================
 
diff --git a/funbot-client.cabal b/funbot-client.cabal
--- a/funbot-client.cabal
+++ b/funbot-client.cabal
@@ -1,5 +1,5 @@
 name:                funbot-client
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Report events to FunBot over a JSON/HTTP API.
 description:
   This is a library for reporting events to a running instance of
@@ -23,6 +23,10 @@
   type:                git
   location:            https://notabug.org/fr33domlover/funbot-client.git
 
+flag old
+  description: Use network for Network.URI, and a matching HTTP package version
+  default: False
+
 library
   exposed-modules:     FunBot.Client
   -- other-modules:       
@@ -32,8 +36,12 @@
                      , base              >=4.7 && <5
                      , bytestring
                      , funbot-ext-events
+  if flag(old)
+    build-depends:     network           <2.6
+                     , HTTP              >=4000.2 && <=4000.2.17
+  else
+    build-depends:     network-uri       >=2.6
                      , HTTP              >=4000.2
-                     , network-uri
   hs-source-dirs:      src
   default-language:    Haskell2010
   ghc-options:         -Wall
