influxdb 1.7.1.2 → 1.7.1.3
raw patch · 3 files changed
+13/−7 lines, 3 filesdep ~basedep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, time
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +2/−1
- influxdb.cabal +7/−6
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for influxdb +## v1.7.1.3 - 2020-04-03++* Relax upper version bound for base to support GHC 8.10.1+ ## v1.7.1.2 - 2020-02-08 * Relax upper version bound for lens
README.md view
@@ -1,8 +1,9 @@ # Haskell client library for InfluxDB+ [](https://hackage.haskell.org/package/influxdb) [](http://packdeps.haskellers.com/feed?needle=influxdb) [](https://travis-ci.org/maoe/influxdb-haskell)-[](https://matrix.hackage.haskell.org/package/influxdb)+[](https://matrix.hackage.haskell.org/package/influxdb) [](https://gitter.im/maoe/influxdb-haskell?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) Currently this library is tested against InfluxDB 1.7.
influxdb.cabal view
@@ -1,8 +1,8 @@ name: influxdb-version: 1.7.1.2+version: 1.7.1.3 synopsis: Haskell client library for InfluxDB description:- @influxdb@ is a Haskell client library for InfluxDB.+ @influxdb@ is an InfluxDB client library for Haskell. . See "Database.InfluxDB" for a quick start guide. homepage: https://github.com/maoe/influxdb-haskell@@ -10,7 +10,7 @@ license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <me@maoe.name>-copyright: Copyright (C) 2014-2019 Mitsutoshi Aoe+copyright: Copyright (C) 2014-2020 Mitsutoshi Aoe category: Database build-type: Custom cabal-version: 1.24@@ -19,7 +19,8 @@ GHC == 8.2.2 GHC == 8.4.4 GHC == 8.6.5- GHC == 8.8.2+ GHC == 8.8.3+ GHC == 8.10.1 extra-source-files: README.md@@ -74,7 +75,7 @@ ViewPatterns ghc-options: -Wall build-depends:- base >= 4.9 && < 4.14+ base >= 4.9 && < 4.15 , aeson >= 0.7 && < 1.5 , attoparsec < 0.14 , bytestring >= 0.10 && < 0.11@@ -89,7 +90,7 @@ , scientific >= 0.3.3 && < 0.4 , tagged >= 0.1 && < 0.9 , text < 1.3- , time >= 1.5 && < 1.10+ , time >= 1.5 && < 1.11 , unordered-containers < 0.3 , vector >= 0.10 && < 0.13 hs-source-dirs: src