packages feed

general-allocate 0.2.0.0 → 0.2.0.1

raw patch · 4 files changed

+7/−1 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for general-allocate +## 0.2.0.1 -- 2023-01-10++* Fix build with mtl 2.3+ ## 0.2.0.0 -- 2022-12-20  * Break out `Exceptable` out from `MonadWithExceptable`
general-allocate.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               general-allocate-version:            0.2.0.0+version:            0.2.0.1 license:            Apache-2.0 license-file:       LICENSE author:             Shea Levy
src/Control/Monad/NoContinuation/Resource.hs view
@@ -19,6 +19,7 @@   ) where +import Control.Monad import Control.Monad.NoContinuation.Resource.Internal import Control.Monad.Primitive import Control.Monad.Reader
src/Control/Monad/NoContinuation/Resource/Internal.hs view
@@ -25,6 +25,7 @@ import Control.Exception.Safe import Control.Monad import Control.Monad.Allocate+import Control.Monad.Fix import Control.Monad.Primitive import Control.Monad.Reader import Control.Monad.State.Lazy