streaming-with 0.2.1.1 → 0.2.2.0
raw patch · 4 files changed
+14/−7 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Streaming.With.Lifted: liftThrow :: (Withable w, Exception e) => e -> w a
Files
- ChangeLog.md +4/−0
- src/Streaming/With.hs +4/−4
- src/Streaming/With/Lifted.hs +2/−1
- streaming-with.cabal +4/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for streaming-with +## 0.2.2.0 -- 2018-05-23++* Actually export `liftThrow` from within `Streaming.With.Lifted`.+ ## 0.2.1.1 -- 2018-03-23 * Bump exceptions dependency
src/Streaming/With.hs view
@@ -72,8 +72,8 @@ -------------------------------------------------------------------------------- --- | /This is 'T.withSystemTempFile' from the @temporary@ package with--- the continuation re-structured to only take one argument./+-- | /This is 'T.withSystemTempFile' from the @temporary@ package/+-- /with the continuation re-structured to only take one argument./ -- -- Create and use a temporary file in the system standard temporary -- directory.@@ -89,8 +89,8 @@ -> m r withSystemTempFile template = T.withSystemTempFile template . curry --- | /This is 'T.withTempFile' from the @temporary@ package with--- the continuation re-structured to only take one argument./+-- | /This is 'T.withTempFile' from the @temporary@ package with the/+-- /continuation re-structured to only take one argument./ -- -- Use a temporary filename that doesn't already exist. --
src/Streaming/With/Lifted.hs view
@@ -40,6 +40,7 @@ , RunWithable (..) , within , liftActionIO+ , liftThrow -- * File-handling , withFile , withBinaryFile@@ -153,7 +154,7 @@ -- -- @liftThrow = liftAction . throwM@. ----- @since 0.2.1.0+-- @since 0.2.2.0 liftThrow :: (Withable w, Exception e) => e -> w a liftThrow = liftAction . throwM
streaming-with.cabal view
@@ -1,5 +1,5 @@ name: streaming-with-version: 0.2.1.1+version: 0.2.2.0 synopsis: with/bracket-style idioms for use with streaming description: This package provides the foundations for a continuation-based@@ -13,7 +13,9 @@ build-type: Simple extra-source-files: ChangeLog.md, README.md cabal-version: >=1.10-tested-with: GHC == 7.10.2, GHC == 8.0.2, GHC == 8.1.*+tested-with: GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2,+ -- GHC == 8.4.1,+ GHC == 8.5.* source-repository head type: git