diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,9 +3,16 @@
 `servant-errors` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
-## 0.0.0.0
+## 0.1.0.0
 
 * Initially created.
+
+[1]: https://pvp.haskell.org
+[2]: https://github.com/epicallan/servant-errors/releases
+
+## 0.1.0.1
+
+* Add package dependence bounds
 
 [1]: https://pvp.haskell.org
 [2]: https://github.com/epicallan/servant-errors/releases
diff --git a/servant-errors.cabal b/servant-errors.cabal
--- a/servant-errors.cabal
+++ b/servant-errors.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.0
 name:                servant-errors
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Servant Errors wai-middlware
 description:         A Wai middleware that uniformly structures errors with in a servant application. The library assumes all HTTP responses with status code greater than 200 and without an HTTP content type are error responses. This assumption is derived from servant server error handling implementation.
 
@@ -25,17 +25,17 @@
   exposed-modules:     Network.Wai.Middleware.Servant.Errors
 
   build-depends:       base ^>= 4.12.0.0
-                     , aeson
-                     , bytestring
-                     , http-types
-                     , http-api-data
-                     , http-media
-                     , scientific
-                     , servant
-                     , string-conversions
-                     , text
-                     , unordered-containers
-                     , wai
+                     , aeson ^>= 1.4.2.0
+                     , bytestring ^>= 0.10.8.2
+                     , http-types ^>= 0.12.3
+                     , http-api-data ^>= 0.4
+                     , http-media ^>= 0.7.1.3
+                     , scientific ^>= 0.3.6.2
+                     , servant ^>= 0.15
+                     , string-conversions ^>= 0.4.0.1
+                     , text ^>= 1.2.3.1
+                     , unordered-containers ^>= 0.2.9.0
+                     , wai ^>= 3.2.2
 
   ghc-options:         -Wall
                        -Wincomplete-uni-patterns
@@ -49,13 +49,13 @@
   default-language:    Haskell2010
 
 test-suite readme
-  build-depends:       base
-                     , aeson
-                     , text
-                     , servant-errors
-                     , servant-server
-                     , wai
-                     , warp
+  build-depends:       base ^>= 4.12.0.0
+                     , aeson ^>= 1.4.2.0
+                     , text ^>= 1.2.3.1
+                     , servant-errors ^>= 0.1.0.0
+                     , servant-server ^>= 0.15
+                     , wai ^>= 3.2.2
+                     , warp ^>= 3.2.26
 
   main-is:             README.lhs
   type:                exitcode-stdio-1.0
