Skip to content

Commit

Permalink
Bump version to 4.5.0
Browse files Browse the repository at this point in the history
- [AsyncResultOption updated to be more useful](#211) Credits @TheAngryByrd
- [Adds use for IAsyncDisposable to async varieties](#212) Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Mar 27, 2023
1 parent aa8362d commit d3e8868
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 0 additions & 1 deletion src/FsToolkit.ErrorHandling/Async.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d3e8868

Please sign in to comment.