diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for jsonpath-hs
 
+## v0.1.0.2
+
+* Remove upper bounds from dependencies, as most of them are quite stable packages
+
 ## v0.1.0.1
 
 * Import Data.Semigroup to support GHC 8
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
 # jsonpath-hs
 
+
+
+[![Build Status](https://travis-ci.org/akshaymankar/jsonpath-hs.svg?branch=master)](https://travis-ci.org/akshaymankar/jsonpath-hs) [![Matrix Build](https://matrix.hackage.haskell.org/api/v2/packages/jsonpath/badge)](https://matrix.hackage.haskell.org/package/jsonpath)
+
 Implementation of jsonpath as [described by Steffen Göessner](https://goessner.net/articles/JsonPath/).
 
 ## State of this library
diff --git a/jsonpath.cabal b/jsonpath.cabal
--- a/jsonpath.cabal
+++ b/jsonpath.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 4b5596942f26fb29d7787297913412686621fb6005a9a529e6e99af0e451773e
+-- hash: 05858fc895e0f57cbc4ec4533a099e4e1e46a8fc3cecb94f464ecca44dfec2e1
 
 name:           jsonpath
-version:        0.1.0.1
+version:        0.1.0.2
 synopsis:       Library to parse and execute JSONPath
 description:    Please see the README on GitHub at <https://github.com/akshaymankar/jsonpath-hs#readme>
 category:       Text, Web, JSON
@@ -18,7 +18,7 @@
 copyright:      Akshay Mankar
 license:        BSD3
 license-file:   LICENSE
-tested-with:    GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.4
+tested-with:    GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5
 build-type:     Simple
 extra-source-files:
     README.md
@@ -44,12 +44,12 @@
   hs-source-dirs:
       src
   build-depends:
-      aeson >=1.4.2 && <1.5
-    , attoparsec >=0.13.2 && <0.14
+      aeson >=1.1
+    , attoparsec >=0.13
     , base >=4.9 && <5
-    , text >=1.2.3 && <1.3
-    , unordered-containers >=0.2.10 && <0.3
-    , vector >=0.12.0 && <0.13
+    , text >=1.2
+    , unordered-containers >=0.2.8
+    , vector >=0.12
   default-language: Haskell2010
 
 test-suite jsonpath-test
@@ -64,16 +64,16 @@
   build-tool-depends:
       hspec-discover:hspec-discover
   build-depends:
-      aeson >=1.4.2 && <1.5
+      aeson >=1.1
     , aeson-casing
-    , attoparsec >=0.13.2 && <0.14
+    , attoparsec >=0.13
     , base >=4.9 && <5
     , bytestring
     , file-embed
     , hspec
     , hspec-attoparsec
     , jsonpath
-    , text >=1.2.3 && <1.3
-    , unordered-containers >=0.2.10 && <0.3
-    , vector >=0.12.0 && <0.13
+    , text >=1.2
+    , unordered-containers >=0.2.8
+    , vector >=0.12
   default-language: Haskell2010
