resourcet 1.1.4 → 1.1.4.1
raw patch · 3 files changed
+8/−2 lines, 3 filesdep ~exceptionsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: exceptions
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Control/Monad/Trans/Resource/Internal.hs +2/−0
- resourcet.cabal +2/−2
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.1.4.1++* Allow older `exceptions` version again+ ## 1.1.4 * Add `MonadResource ExceptT` instance [#198](https://github.com/snoyberg/conduit/pull/198)
Control/Monad/Trans/Resource/Internal.hs view
@@ -285,7 +285,9 @@ GO(ListT) GO(MaybeT) GOX(Error e, ErrorT e)+#if MIN_VERSION_exceptions(0, 8, 0) GO(ExceptT e)+#endif GO(ReaderT r) GO(ContT r) GO(StateT s)
resourcet.cabal view
@@ -1,5 +1,5 @@ Name: resourcet-Version: 1.1.4+Version: 1.1.4.1 Synopsis: Deterministic allocation and freeing of scarce resources. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/resourcet>. License: BSD3@@ -26,7 +26,7 @@ , transformers-compat >= 0.3 && < 0.5 , mtl >= 2.0 && < 2.3 , mmorph- , exceptions >= 0.8+ , exceptions >= 0.5 ghc-options: -Wall test-suite test