From af0b443333460b2a167ef26fecd57966b38a9c91 Mon Sep 17 00:00:00 2001 From: Kurt Schelfthout Date: Sat, 1 Jul 2023 23:05:07 +0100 Subject: [PATCH] Release 2.16.5. (#635) --- FsCheck Release Notes.md | 4 ++++ global.json | 4 ++-- paket.dependencies | 2 ++ src/FsCheck.NUnit/AssemblyInfo.fs | 8 ++++---- src/FsCheck.Xunit/AssemblyInfo.fs | 8 ++++---- src/FsCheck/AssemblyInfo.fs | 8 ++++---- 6 files changed, 20 insertions(+), 14 deletions(-) diff --git a/FsCheck Release Notes.md b/FsCheck Release Notes.md index 37b41116..d2ff8776 100644 --- a/FsCheck Release Notes.md +++ b/FsCheck Release Notes.md @@ -1,3 +1,7 @@ +### 2.16.6 - 1 July 2023 + +* Added Map and Return methods to make FsCheck more F#+ friendly. (by Gustavo Leon) + ### 2.16.5 - 1 June 2022 * Improved C# record type generation - previously no values for some properties were not generated. diff --git a/global.json b/global.json index 17fb2005..a48ad76d 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "3.1.101", - "rollForward": "latestMajor" + "version": "5.0.0", + "rollForward": "latestMinor" } } diff --git a/paket.dependencies b/paket.dependencies index cd63095f..c7f7f5c5 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,5 +1,7 @@ source https://www.nuget.org/api/v2 +version 5.257.0 + framework: auto-detect nuget FSharp.Core = 4.2.3 diff --git a/src/FsCheck.NUnit/AssemblyInfo.fs b/src/FsCheck.NUnit/AssemblyInfo.fs index 86fcfe4b..05bbb7d2 100644 --- a/src/FsCheck.NUnit/AssemblyInfo.fs +++ b/src/FsCheck.NUnit/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsCheck.NUnit" let [] AssemblyProduct = "FsCheck.NUnit" let [] AssemblyDescription = "Integrates FsCheck with NUnit" - let [] AssemblyVersion = "2.16.5" - let [] AssemblyFileVersion = "2.16.5" + let [] AssemblyVersion = "2.16.6" + let [] AssemblyFileVersion = "2.16.6" diff --git a/src/FsCheck.Xunit/AssemblyInfo.fs b/src/FsCheck.Xunit/AssemblyInfo.fs index 645d0ed2..ae5dd55c 100644 --- a/src/FsCheck.Xunit/AssemblyInfo.fs +++ b/src/FsCheck.Xunit/AssemblyInfo.fs @@ -6,8 +6,8 @@ open System.Runtime.CompilerServices [] [] [] -[] -[] +[] +[] [] do () @@ -15,6 +15,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsCheck.Xunit" let [] AssemblyProduct = "FsCheck.Xunit" let [] AssemblyDescription = "Integrates FsCheck with xUnit.NET" - let [] AssemblyVersion = "2.16.5" - let [] AssemblyFileVersion = "2.16.5" + let [] AssemblyVersion = "2.16.6" + let [] AssemblyFileVersion = "2.16.6" let [] InternalsVisibleTo = "FsCheck.Test" diff --git a/src/FsCheck/AssemblyInfo.fs b/src/FsCheck/AssemblyInfo.fs index 87e20e60..dfcb9322 100644 --- a/src/FsCheck/AssemblyInfo.fs +++ b/src/FsCheck/AssemblyInfo.fs @@ -6,8 +6,8 @@ open System.Runtime.CompilerServices [] [] [] -[] -[] +[] +[] [] do () @@ -15,6 +15,6 @@ module internal AssemblyVersionInformation = let [] AssemblyTitle = "FsCheck" let [] AssemblyProduct = "FsCheck" let [] AssemblyDescription = "FsCheck is a tool for testing .NET programs automatically using randomly generated test cases." - let [] AssemblyVersion = "2.16.5" - let [] AssemblyFileVersion = "2.16.5" + let [] AssemblyVersion = "2.16.6" + let [] AssemblyFileVersion = "2.16.6" let [] InternalsVisibleTo = "FsCheck.Test"