Update changelog

main
Ian Duncan 2019-10-23 10:21:00 +09:00
parent be5a29cc19
commit acb517b68a
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
* Add `Control.Effect.Resource` and `Control.Carrier.Resource`, as ported from fused-effects 0.5.
* Add `Control.Carrier.State.IORef` to help people migrating from other state carriers.
* Move `Control.Effect.Catch.CatchC` to `Control.Carrier.Catch` and simplify its internals.
* Rename `catch` to `catchAsync` and `catchSync` to `catch`.
# 0.2.0.0

View File

@ -40,7 +40,7 @@ instance Effect Catch where
--
-- Unhandled errors are rethrown. Use 'Exc.SomeException' if you want to catch all errors.
--
-- | @since 0.1.0.0
-- | @since 1.0.0.0
catchAsync :: (Member Catch sig, Carrier sig m, Exc.Exception e)
=> m a
-> (e -> m a)