Skip to content

Commit d3e8868

Browse files
committed
Bump version to 4.5.0
- [AsyncResultOption updated to be more useful](#211) Credits @TheAngryByrd - [Adds use for IAsyncDisposable to async varieties](#212) Credits @TheAngryByrd
1 parent aa8362d commit d3e8868

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 4.5.0-beta002 - March 19, 2023
1+
### 4.5.0 - March 26, 2023
22
- [AsyncResultOption updated to be more useful](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/211) Credits @TheAngryByrd
33
- [Adds use for IAsyncDisposable to async varieties](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/212) Credits @TheAngryByrd
44

src/FsToolkit.ErrorHandling/Async.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ module Async =
6868
)
6969
input1
7070

71-
7271
/// Takes two asyncs and returns a tuple of the pair
7372
let inline zip (left: Async<'left>) (right: Async<'right>) : Async<'left * 'right> =
7473
bind (fun l -> bind (fun r -> singleton (l, r)) right) left

0 commit comments

Comments
 (0)