jsonpath 0.1.0.1 → 0.1.0.2
raw patch · 3 files changed
+21/−13 lines, 3 filesdep ~aesondep ~attoparsecdep ~textPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, attoparsec, text, unordered-containers, vector
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- README.md +4/−0
- jsonpath.cabal +13/−13
ChangeLog.md view
@@ -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
README.md view
@@ -1,5 +1,9 @@ # jsonpath-hs +++[](https://travis-ci.org/akshaymankar/jsonpath-hs) [](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
jsonpath.cabal view
@@ -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