monad-finally 0.1 → 0.1.0.1
raw patch · 2 files changed
+21/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +17/−0
- monad-finally.cabal +4/−1
+ README.md view
@@ -0,0 +1,17 @@+Monad-Finally+=============++[](https://travis-ci.org/mvv/monad-finally) [](http://hackage.haskell.org/package/monad-finally)++This package provides a generalized version of `Control.Exception.finally`.+The cleanup action is run not only on successful termination of the main+computation and on errors, but on any control flow disruption (e.g.+`mzero`, short-circuiting) that causes the main computation to not produce+a result.++Installation+------------+The usual:++ $ cabal install+
monad-finally.cabal view
@@ -1,5 +1,5 @@ Name: monad-finally-Version: 0.1+Version: 0.1.0.1 Category: Control Stability: experimental Synopsis: Guard monadic computations with cleanup actions@@ -18,6 +18,9 @@ Copyright: 2011-2017 Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com> License: BSD3 License-File: LICENSE++Extra-Source-Files:+ README.md Tested-With: GHC==7.6.3, GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2