packages feed

OrchestrateDB 1.0.0.1 → 1.0.0.2

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Database.Orchestrate.Types: instance Eq OrchestrateApplication
+ Database.Orchestrate.Types: instance Eq OrchestrateCollection
+ Database.Orchestrate.Types: instance Read OrchestrateApplication
+ Database.Orchestrate.Types: instance Read OrchestrateCollection
+ Database.Orchestrate.Types: instance Show OrchestrateApplication
+ Database.Orchestrate.Types: instance Show OrchestrateCollection

Files

Database/Orchestrate/Types.hs view
@@ -33,14 +33,14 @@     applicationName :: String,     apiKey          :: String,     httpsEndpoint   :: String-}+} deriving (Show,Read,Eq)  {-| Represents a collection inside an OrchestrateApplication, it stores all data necessary to access it. -} data OrchestrateCollection = OrchestrateCollection {     collectionName :: String-}+} deriving (Show,Read,Eq)  -- |TypeClass for OrchestrateQueryResult and OrchestrateListResult, it makes it possible to have one function('resultValuesAsList'), that extractes -- the values from both of those types.
OrchestrateDB.cabal view
@@ -10,7 +10,7 @@ -- PVP summary:      +-+------- breaking API changes --                   | | +----- non-breaking API additions --                   | | | +--- code changes with no API change-version:             1.0.0.1+version:             1.0.0.2  -- A short (one-line) description of the package. synopsis:             Unofficial Haskell Client Library for the Orchestrate.io API