From aacc9dbe634cf15659f47525407f2ad33dc80b1a Mon Sep 17 00:00:00 2001 From: Jimmy Byrd Date: Thu, 25 Feb 2021 15:30:29 -0500 Subject: [PATCH] Bump version to 2.1.0-beta001 - Performance enhancements for traverseValidationA. Credits [@isaacabraham](https://github.com/isaacabraham) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/110) --- RELEASE_NOTES.md | 3 +++ build.fsx | 6 +++--- src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs | 8 ++++---- src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs | 8 ++++---- src/FsToolkit.ErrorHandling/AssemblyInfo.fs | 8 ++++---- 5 files changed, 18 insertions(+), 15 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 4f54d832..cecfb066 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 2.1.0-beta001 - February 25, 2020 +- Performance enhancements for traverseValidationA. Credits [@isaacabraham](https://github.com/isaacabraham) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/110) + #### 2.0.0 - November 20, 2020 - Switches TaskResult Library from TaskBuilder to Ply. Credits [Nino Floris](https://github.com/NinoFloris) - (https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/97) - 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`. - diff --git a/build.fsx b/build.fsx index d4782ef7..8c3f2ce3 100644 --- a/build.fsx +++ b/build.fsx @@ -28,8 +28,8 @@ let githubToken = Environment.environVarOrNone "GITHUB_TOKEN" Option.iter(TraceSecrets.register "" ) -let nugetToken = Environment.environVarOrNone "FSTOOLKIT_NUGET_TOKEN" -Option.iter(TraceSecrets.register "") +let nugetToken = Environment.environVarOrNone "NUGET_TOKEN" +Option.iter(TraceSecrets.register "") Target.create "Clean" (fun _ -> @@ -162,7 +162,7 @@ Target.create "PublishNuget" (fun _ -> ApiKey = match nugetToken with | Some s -> s - | _ -> c.ApiKey // assume paket-config was set properly + | _ -> p.ApiKey // assume paket-config was set properly } ) ) diff --git a/src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs b/src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs index 084b5e99..5f9a89a0 100644 --- a/src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs +++ b/src/FsToolkit.ErrorHandling.JobResult/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsToolkit.ErrorHandling.JobResult" let [] AssemblyProduct = "FsToolkit.ErrorHandling" let [] AssemblyDescription = "An opinionated error handling library for F#" - let [] AssemblyVersion = "2.0.0" - let [] AssemblyFileVersion = "2.0.0" + let [] AssemblyVersion = "2.1.0" + let [] AssemblyFileVersion = "2.1.0" let [] AssemblyConfiguration = "Release" diff --git a/src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs b/src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs index 0e5797d8..57d7baa5 100644 --- a/src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs +++ b/src/FsToolkit.ErrorHandling.TaskResult/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsToolkit.ErrorHandling.TaskResult" let [] AssemblyProduct = "FsToolkit.ErrorHandling" let [] AssemblyDescription = "An opinionated error handling library for F#" - let [] AssemblyVersion = "2.0.0" - let [] AssemblyFileVersion = "2.0.0" + let [] AssemblyVersion = "2.1.0" + let [] AssemblyFileVersion = "2.1.0" let [] AssemblyConfiguration = "Release" diff --git a/src/FsToolkit.ErrorHandling/AssemblyInfo.fs b/src/FsToolkit.ErrorHandling/AssemblyInfo.fs index afb5c7d8..461c495e 100644 --- a/src/FsToolkit.ErrorHandling/AssemblyInfo.fs +++ b/src/FsToolkit.ErrorHandling/AssemblyInfo.fs @@ -5,8 +5,8 @@ open System.Reflection [] [] [] -[] -[] +[] +[] [] do () @@ -14,6 +14,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsToolkit.ErrorHandling" let [] AssemblyProduct = "FsToolkit.ErrorHandling" let [] AssemblyDescription = "An opinionated error handling library for F#" - let [] AssemblyVersion = "2.0.0" - let [] AssemblyFileVersion = "2.0.0" + let [] AssemblyVersion = "2.1.0" + let [] AssemblyFileVersion = "2.1.0" let [] AssemblyConfiguration = "Release"