packages feed

hasql-pool 0.5.0.2 → 0.5.1

raw patch · 2 files changed

+3/−2 lines, 2 filesdep ~hasqlPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: hasql

API changes (from Hackage documentation)

+ Hasql.Pool: instance GHC.Show.Show Hasql.Pool.Pool

Files

hasql-pool.cabal view
@@ -1,7 +1,7 @@ name:   hasql-pool version:-  0.5.0.2+  0.5.1 category:   Hasql, Database, PostgreSQL synopsis:@@ -50,7 +50,7 @@     -- resources:     resource-pool >= 0.2 && < 0.3,     -- database:-    hasql >= 1.3 && < 1.4,+    hasql >= 1.3 && < 1.5,     -- data:     time >= 1.5 && < 2,     -- general:
library/Hasql/Pool.hs view
@@ -20,6 +20,7 @@ -- A pool of connections to DB. newtype Pool =   Pool (ResourcePool.Pool (Either Hasql.Connection.ConnectionError Hasql.Connection.Connection))+  deriving (Show)  -- | -- Settings of the connection pool. Consist of: