diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -3,3 +3,7 @@
 ## 0.1.0.0  -- YYYY-mm-dd
 
 * First version. Released on an unsuspecting world.
+
+## 0.1.0.1  -- 2018-10-12
+
+* Dependency change: Relax upper and lower bounds on base.
diff --git a/haskell-bitmex-client.cabal b/haskell-bitmex-client.cabal
--- a/haskell-bitmex-client.cabal
+++ b/haskell-bitmex-client.cabal
@@ -1,5 +1,5 @@
 name:                haskell-bitmex-client
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Complete BitMEX Client
 description:         A complete BitMEX client library including the WebSocket API and a wrapper around the auto-generated REST API (haskell-bitmex-rest).
 license:             BSD3
@@ -7,6 +7,7 @@
 author:              Lucsanszky
 maintainer:          dan.lucsanszky@gmail.com
 category:            Web
+homepage:            https://github.com/Lucsanszky/haskell-bitmex/tree/master/client
 build-type:          Simple
 extra-source-files:  ChangeLog.md
                      README.md
@@ -31,7 +32,7 @@
                -Wincomplete-record-updates
                -Wincomplete-uni-patterns
                -Wredundant-constraints
-  build-depends:       base >=4.10 && <4.11
+  build-depends:       base >=4.7 && <5.0
                      , mtl >=2.2.1
                      , aeson >=1.0 && <2.0
                      , bytestring >=0.10.0 && <0.11
@@ -65,7 +66,7 @@
 executable example
   hs-source-dirs:      example
   main-is:             Example.hs
-  build-depends:       base >=4.10 && <4.11
+  build-depends:       base >=4.7 && <5.0
                      , mtl >=2.2.1
                      , aeson >=1.0 && <2.0
                      , bytestring >=0.10.0 && <0.11
