packages feed

influxdb 0.3.0.1 → 0.4.0

raw patch · 3 files changed

+10/−8 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- Database.InfluxDB: data Database
- Database.InfluxDB: databaseReplicationFactor :: Database -> !(Maybe Int)
- Database.InfluxDB.Types: data Database
- Database.InfluxDB.Types: databaseReplicationFactor :: Database -> !(Maybe Int)
+ Database.InfluxDB: newtype Database
+ Database.InfluxDB.Types: newtype Database
- Database.InfluxDB: Database :: !Text -> !(Maybe Int) -> Database
+ Database.InfluxDB: Database :: Text -> Database
- Database.InfluxDB: databaseName :: Database -> !Text
+ Database.InfluxDB: databaseName :: Database -> Text
- Database.InfluxDB.Types: Database :: !Text -> !(Maybe Int) -> Database
+ Database.InfluxDB.Types: Database :: Text -> Database
- Database.InfluxDB.Types: databaseName :: Database -> !Text
+ Database.InfluxDB.Types: databaseName :: Database -> Text

Files

CHANGELOG.md view
@@ -1,6 +1,10 @@-## v0.3.0.1+## v0.4.0 - 2014-06-05 -* Allow exceptions-0.6 (@jwlato)+* Remove `databaseReplicationFactor` field from `Database` type++## v0.3.0.1 - 2014-06-04++* Allow exceptions-0.6 (@JohnLato)  ## v0.3.0 - 2014-06-03 
influxdb.cabal view
@@ -1,5 +1,5 @@ name: influxdb-version: 0.3.0.1+version: 0.4.0 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.3.0.1+  tag: v0.4.0   location: https://github.com/maoe/influxdb-haskell.git
src/Database/InfluxDB/Types.hs view
@@ -175,10 +175,8 @@   -- ^ The rest of the servers in the pool.   } --- | Database consits of name and replication factor.-data Database = Database-  { databaseName :: !Text-  , databaseReplicationFactor :: !(Maybe Int)+newtype Database = Database+  { databaseName :: Text   } deriving Show  newtype ScheduledDelete = ScheduledDelete