packages feed

haskelldb-hdbc-postgresql 0.12 → 0.13

raw patch · 1 files changed

+14/−7 lines, 1 filesdep ~HDBCdep ~HDBC-postgresqldep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: HDBC, HDBC-postgresql, base, haskelldb, haskelldb-hdbc, mtl

API changes (from Hackage documentation)

+ Database.HaskellDB.HDBC.PostgreSQL: DriverInterface :: (forall m :: (* -> *) a. (MonadIO m) => [(String, String)] -> (Database -> m a) -> m a) -> [(String, String)] -> DriverInterface
+ Database.HaskellDB.HDBC.PostgreSQL: connect :: DriverInterface -> forall m :: (* -> *) a. (MonadIO m) => [(String, String)] -> (Database -> m a) -> m a
+ Database.HaskellDB.HDBC.PostgreSQL: data DriverInterface :: *
+ Database.HaskellDB.HDBC.PostgreSQL: requiredOptions :: DriverInterface -> [(String, String)]

Files

haskelldb-hdbc-postgresql.cabal view
@@ -1,5 +1,5 @@ Name: haskelldb-hdbc-postgresql-Version: 0.12+Version: 0.13 Cabal-version: >= 1.2 Build-type: Simple Copyright: The authors@@ -8,14 +8,21 @@ License: BSD3 Synopsis: HaskellDB support for the HDBC PostgreSQL driver. +Flag split-base+ Library   Build-depends: -    base, -    mtl, -    haskelldb>=0.12,-    haskelldb-hdbc>=0.12,-    HDBC>=2.0.0 && < 2.2.0,-    HDBC-postgresql>=2.0.0 && < 2.2.0+    mtl >= 1 && < 2, +    haskelldb >= 0.12 && < 1,+    haskelldb-hdbc >= 0.12 && < 1,+    HDBC >= 2 && < 3,+    HDBC-postgresql >= 2 && < 3++  if flag(split-base)+    Build-depends: base >= 3 && < 5+  else+    Build-depends: base < 3+   Exposed-Modules:         Database.HaskellDB.HDBC.PostgreSQL