Skip to content

Commit 2e1efe1

Browse files
committed
Bump version to 2.5.0-beta001
-A dded Async, Task and Job overloads for the relavant Option CEs to resolve Credits [@Jmaharman](https://github.com/Jmaharman) - (#132)
1 parent 8f6067c commit 2e1efe1

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,39 @@
1+
#### 2.5.0-beta001 - May 26, 2021
2+
3+
-A dded Async, Task and Job overloads for the relavant Option CEs to resolve Credits [@Jmaharman](https://github.com/Jmaharman) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/132)
4+
15
#### 2.4.0 - May 23, 2021
6+
27
- Adds defaultError and zipError helpers Credits [@sep2](https://github.com/sep2) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/130)
38
#### 2.3.0 - May 14, 2021
9+
410
- 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)
511

612

713
#### 2.2.0 - April 21, 2021
14+
815
- AsyncResult, TaskResult, JobResult error helpers Credits [@meridaio](https://github.com/meridaio) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/124)
916

1017
#### 2.1.2 - February 27, 2021
18+
1119
- Converts ValidationCE to use Source overloads Credits [@TheAngryByrd](https://github.com/TheAngryByrd) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/115)
1220

1321
#### 2.1.1 - February 26, 2021
22+
1423
- Added Description and License to nuget package Credits [@TheAngryByrd](https://github.com/TheAngryByrd) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/114)
1524

1625
#### 2.1.0 - February 26, 2021
1726
- Performance enhancements for traverseValidationA. Credits [@isaacabraham](https://github.com/isaacabraham) Credits [@TheAngryByrd](https://github.com/TheAngryByrd) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/110) (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/111) (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/113)
1827

1928
#### 2.0.0 - November 20, 2020
29+
2030
- Switches TaskResult Library from TaskBuilder to Ply. Credits [Nino Floris](https://github.com/NinoFloris) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/97)
2131
- This change replaces [TaskBuilder](https://github.com/rspeele/TaskBuilder.fs) with [Ply](https://github.com/crowded/ply). Ply has better performance characteristics and more in line with how C# handles Task execution. To convert from TaskBuilder to Ply, replace the namespace of `FSharp.Control.Tasks.V2.ContextInsensitive` with `FSharp.Control.Tasks`. -
2232
- This also removes the TargetFramework net461 as a build target. Current netstandard2.0 supports net472 fully according to [this chart](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support). It's recommended to upgrade your application to net472 if possible. If not, older versions of this library, such as 1.4.3, aren't going anywhere and can still be consumed from older TargetFrameworks.
2333
- Switch to use Affine for Task related. Credits [@Swoorup](https://github.com/Swoorup). - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/107)
2434

2535
#### 1.4.3 - July 21, 2020
36+
2637
- Adds IF FABLE_COMPILER to any Async.AwaitTask type functions in AsyncResult. Credits [Jimmy Byrd](https://github.com/TheAngryByrd) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/93)
2738

2839
#### 1.4.1 - June 23, 2020 [YANKED]

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.4.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.5.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.5.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.4.0"
18-
let [<Literal>] AssemblyFileVersion = "2.4.0"
17+
let [<Literal>] AssemblyVersion = "2.5.0"
18+
let [<Literal>] AssemblyFileVersion = "2.5.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.4.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.5.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.5.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.4.0"
18-
let [<Literal>] AssemblyFileVersion = "2.4.0"
17+
let [<Literal>] AssemblyVersion = "2.5.0"
18+
let [<Literal>] AssemblyFileVersion = "2.5.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.4.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.4.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.5.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.5.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.4.0"
18-
let [<Literal>] AssemblyFileVersion = "2.4.0"
17+
let [<Literal>] AssemblyVersion = "2.5.0"
18+
let [<Literal>] AssemblyFileVersion = "2.5.0"
1919
let [<Literal>] AssemblyConfiguration = "Release"

0 commit comments

Comments
 (0)