packages feed

influxdb 0.4.1 → 0.4.2

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Database.InfluxDB: newServerPoolWithRetrySettings :: RetrySettings -> Server -> [Server] -> IO (IORef ServerPool)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## v0.4.2 - 2014-06-06++* Export `newServerPoolWithRetrySettings` from `Database.InfluxDB`+ ## v0.4.1 - 2014-06-05  * Make retry settings configurable (#5)
influxdb.cabal view
@@ -1,5 +1,5 @@ name: influxdb-version: 0.4.1+version: 0.4.2 synopsis: Haskell client library for InfluxDB description: Haskell client library for InfluxDB homepage: https://github.com/maoe/influxdb-haskell@@ -141,5 +141,5 @@  source-repository this   type: git-  tag: v0.4.1+  tag: v0.4.2   location: https://github.com/maoe/influxdb-haskell.git
src/Database/InfluxDB.hs view
@@ -23,7 +23,7 @@   , Credentials(..), rootCreds   , TimePrecision(..)   , Server(..), localServer-  , ServerPool, newServerPool+  , ServerPool, newServerPool, newServerPoolWithRetrySettings   , Database(..)   , User(..)   , Admin(..)