packages feed

influxdb 0.5.0 → 0.5.1

raw patch · 3 files changed

+9/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Database.InfluxDB: JsonDecodeError :: String -> InfluxException
+ Database.InfluxDB: SeriesDecodeError :: String -> InfluxException
+ Database.InfluxDB: data InfluxException

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## v0.5.1 - 2014-07-18++* Export `InfluxException` from `Database.InfluxDB`+ ## v0.5.0 - 2014-07-18  * Add `InfluxException` type and use it when decoding JSON or SeriesData (#12)
influxdb.cabal view
@@ -1,5 +1,5 @@ name: influxdb-version: 0.5.0+version: 0.5.1 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.5.0+  tag: v0.5.1   location: https://github.com/maoe/influxdb-haskell.git
src/Database/InfluxDB.hs view
@@ -29,6 +29,9 @@   , Admin(..)   , Ping(..) +  -- *** Exception+  , InfluxException(..)+   -- ** Writing Data    -- *** Updating Points