packages feed

unliftio-pool 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Unlift/Pool.hs view
@@ -27,7 +27,7 @@ withResource :: MonadUnliftIO m => Pool a -> (a -> m b) -> m b withResource pool action =   withRunInIO $ \io ->-    liftIO $ withResource pool $ \a ->+    liftIO $ P.withResource pool $ \a ->       io $ action a  takeResource :: MonadUnliftIO m => Pool a -> m (a, LocalPool a)
unliftio-pool.cabal view
@@ -1,5 +1,5 @@ name:                unliftio-pool-version:             0.1.0.0+version:             0.1.0.1 synopsis:            Data.Pool generalized to MonadUnliftIO. description:         This is a generalization of Data.Pool to MonadUnliftIO. license:             BSD3