diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 83008e76..4d435cc4 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,4 @@ -### 4.5.0-beta002 - March 19, 2023 +### 4.5.0 - March 26, 2023 - [AsyncResultOption updated to be more useful](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/211) Credits @TheAngryByrd - [Adds use for IAsyncDisposable to async varieties](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/212) Credits @TheAngryByrd diff --git a/src/FsToolkit.ErrorHandling/Async.fs b/src/FsToolkit.ErrorHandling/Async.fs index 283d5a05..c0b07848 100644 --- a/src/FsToolkit.ErrorHandling/Async.fs +++ b/src/FsToolkit.ErrorHandling/Async.fs @@ -68,7 +68,6 @@ module Async = ) input1 - /// Takes two asyncs and returns a tuple of the pair let inline zip (left: Async<'left>) (right: Async<'right>) : Async<'left * 'right> = bind (fun l -> bind (fun r -> singleton (l, r)) right) left