influxdb 1.3.0 → 1.3.0.1
raw patch · 3 files changed
+17/−7 lines, 3 filesdep ~QuickCheckdep ~doctestPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, doctest
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +10/−4
- influxdb.cabal +3/−3
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for influxdb +## v1.3.0.1 - 2018-03-06++* Relax upper version bounds for doctest and QuickCheck+ ## v1.3.0 - 2018-03-05 * Relax upper version bound for base ([#51](https://github.com/maoe/influxdb-haskell/pull/51))
README.md view
@@ -1,5 +1,4 @@-Haskell client library for InfluxDB-==========+# Haskell client library for InfluxDB [](https://travis-ci.org/maoe/influxdb-haskell) [](https://hackage.haskell.org/package/influxdb) [](http://packdeps.haskellers.com/feed?needle=influxdb)@@ -7,8 +6,15 @@ Currently this library is tested against InfluxDB 1.4. -Contact information-----------+## Getting started++There is [a quick start guide](https://hackage.haskell.org/package/influxdb/docs/Database-InfluxDB.html) on Hackage.++## Running tests++Either `cabal new-test` or `stack test` runs the doctests in Haddock comments. Note that they need a local running InfluxDB server.++## Contact information Contributions and bug reports are welcome!
influxdb.cabal view
@@ -1,5 +1,5 @@ name: influxdb-version: 1.3.0+version: 1.3.0.1 synopsis: Haskell client library for InfluxDB description: @influxdb@ is a Haskell client library for InfluxDB.@@ -114,8 +114,8 @@ main-is: doctests.hs build-depends: base- , doctest >= 0.11.3 && < 0.14- , QuickCheck ==2.10.*+ , doctest >= 0.11.3 && < 0.15+ , QuickCheck >= 2.10 && < 2.12 , influxdb , template-haskell ghc-options: -Wall -threaded