Skip to content

Commit ba9f9d2

Browse files
committed
Bump version to 2.4.0-beta001
- Adds defaultError and zipError helpers Credits [@sep2](https://github.com/sep2) - (#130)
1 parent 935257d commit ba9f9d2

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#### 2.4.0-beta001 - May 23, 2021
2+
- Adds defaultError and zipError helpers Credits [@sep2](https://github.com/sep2) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/130)
13
#### 2.3.0 - May 14, 2021
24
- Adds Applicative Support to OptionCE. Also adds bindings for Nullable and null objects Credits [@TheAngryByrd](https://github.com/TheAngryByrd) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/126)
35

src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsToolkit.ErrorHandling.JobResult")>]
66
[<assembly: AssemblyProductAttribute("FsToolkit.ErrorHandling")>]
77
[<assembly: AssemblyDescriptionAttribute("FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.")>]
8-
[<assembly: AssemblyVersionAttribute("2.3.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.3.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.4.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
1010
[<assembly: AssemblyConfigurationAttribute("Release")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
1414
let [<Literal>] AssemblyTitle = "FsToolkit.ErrorHandling.JobResult"
1515
let [<Literal>] AssemblyProduct = "FsToolkit.ErrorHandling"
1616
let [<Literal>] AssemblyDescription = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
17-
let [<Literal>] AssemblyVersion = "2.3.0"
18-
let [<Literal>] AssemblyFileVersion = "2.3.0"
17+
let [<Literal>] AssemblyVersion = "2.4.0"
18+
let [<Literal>] AssemblyFileVersion = "2.4.0"
1919
let [<Literal>] AssemblyConfiguration = "Release"

src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsToolkit.ErrorHandling.TaskResult")>]
66
[<assembly: AssemblyProductAttribute("FsToolkit.ErrorHandling")>]
77
[<assembly: AssemblyDescriptionAttribute("FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.")>]
8-
[<assembly: AssemblyVersionAttribute("2.3.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.3.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.4.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
1010
[<assembly: AssemblyConfigurationAttribute("Release")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
1414
let [<Literal>] AssemblyTitle = "FsToolkit.ErrorHandling.TaskResult"
1515
let [<Literal>] AssemblyProduct = "FsToolkit.ErrorHandling"
1616
let [<Literal>] AssemblyDescription = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
17-
let [<Literal>] AssemblyVersion = "2.3.0"
18-
let [<Literal>] AssemblyFileVersion = "2.3.0"
17+
let [<Literal>] AssemblyVersion = "2.4.0"
18+
let [<Literal>] AssemblyFileVersion = "2.4.0"
1919
let [<Literal>] AssemblyConfiguration = "Release"

src/FsToolkit.ErrorHandling/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FsToolkit.ErrorHandling")>]
66
[<assembly: AssemblyProductAttribute("FsToolkit.ErrorHandling")>]
77
[<assembly: AssemblyDescriptionAttribute("FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.")>]
8-
[<assembly: AssemblyVersionAttribute("2.3.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.3.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.4.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
1010
[<assembly: AssemblyConfigurationAttribute("Release")>]
1111
do ()
1212

1313
module internal AssemblyVersionInformation =
1414
let [<Literal>] AssemblyTitle = "FsToolkit.ErrorHandling"
1515
let [<Literal>] AssemblyProduct = "FsToolkit.ErrorHandling"
1616
let [<Literal>] AssemblyDescription = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
17-
let [<Literal>] AssemblyVersion = "2.3.0"
18-
let [<Literal>] AssemblyFileVersion = "2.3.0"
17+
let [<Literal>] AssemblyVersion = "2.4.0"
18+
let [<Literal>] AssemblyFileVersion = "2.4.0"
1919
let [<Literal>] AssemblyConfiguration = "Release"

0 commit comments

Comments
 (0)