postgres-tmp 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Database.PostgreSQL.Tmp: DBInfo :: Text -> Text -> DBInfo
+ Database.PostgreSQL.Tmp: [dbName] :: DBInfo -> Text
+ Database.PostgreSQL.Tmp: [roleName] :: DBInfo -> Text
+ Database.PostgreSQL.Tmp: data DBInfo
Files
- postgres-tmp.cabal +1/−1
- src/Database/PostgreSQL/Tmp.hs +2/−1
postgres-tmp.cabal view
@@ -1,5 +1,5 @@ name: postgres-tmp-version: 0.1.0.0+version: 0.1.0.1 synopsis: Create a temporary database that is deleted after performing some operation description: Please see README.md homepage: https://github.com/cocreature/postgres-tmp#readme
src/Database/PostgreSQL/Tmp.hs view
@@ -9,7 +9,8 @@ ,withTmpDB' ,newRole ,newDB- ,defaultDB) where+ ,defaultDB+ ,DBInfo(..)) where import Control.Applicative (pure) import Control.Exception