Skip to content

Commit

Permalink
Release 2.16.5. (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtschelfthout committed Jul 1, 2023
1 parent fc7d76a commit af0b443
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
4 changes: 4 additions & 0 deletions 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.
Expand Down
4 changes: 2 additions & 2 deletions global.json
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "3.1.101",
"rollForward": "latestMajor"
"version": "5.0.0",
"rollForward": "latestMinor"
}
}
2 changes: 2 additions & 0 deletions 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
Expand Down
8 changes: 4 additions & 4 deletions src/FsCheck.NUnit/AssemblyInfo.fs
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsCheck.NUnit")>]
[<assembly: AssemblyProductAttribute("FsCheck.NUnit")>]
[<assembly: AssemblyDescriptionAttribute("Integrates FsCheck with NUnit")>]
[<assembly: AssemblyVersionAttribute("2.16.5")>]
[<assembly: AssemblyFileVersionAttribute("2.16.5")>]
[<assembly: AssemblyVersionAttribute("2.16.6")>]
[<assembly: AssemblyFileVersionAttribute("2.16.6")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsCheck.NUnit"
let [<Literal>] AssemblyProduct = "FsCheck.NUnit"
let [<Literal>] AssemblyDescription = "Integrates FsCheck with NUnit"
let [<Literal>] AssemblyVersion = "2.16.5"
let [<Literal>] AssemblyFileVersion = "2.16.5"
let [<Literal>] AssemblyVersion = "2.16.6"
let [<Literal>] AssemblyFileVersion = "2.16.6"
8 changes: 4 additions & 4 deletions src/FsCheck.Xunit/AssemblyInfo.fs
Expand Up @@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("FsCheck.Xunit")>]
[<assembly: AssemblyProductAttribute("FsCheck.Xunit")>]
[<assembly: AssemblyDescriptionAttribute("Integrates FsCheck with xUnit.NET")>]
[<assembly: AssemblyVersionAttribute("2.16.5")>]
[<assembly: AssemblyFileVersionAttribute("2.16.5")>]
[<assembly: AssemblyVersionAttribute("2.16.6")>]
[<assembly: AssemblyFileVersionAttribute("2.16.6")>]
[<assembly: InternalsVisibleToAttribute("FsCheck.Test")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsCheck.Xunit"
let [<Literal>] AssemblyProduct = "FsCheck.Xunit"
let [<Literal>] AssemblyDescription = "Integrates FsCheck with xUnit.NET"
let [<Literal>] AssemblyVersion = "2.16.5"
let [<Literal>] AssemblyFileVersion = "2.16.5"
let [<Literal>] AssemblyVersion = "2.16.6"
let [<Literal>] AssemblyFileVersion = "2.16.6"
let [<Literal>] InternalsVisibleTo = "FsCheck.Test"
8 changes: 4 additions & 4 deletions src/FsCheck/AssemblyInfo.fs
Expand Up @@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("FsCheck")>]
[<assembly: AssemblyProductAttribute("FsCheck")>]
[<assembly: AssemblyDescriptionAttribute("FsCheck is a tool for testing .NET programs automatically using randomly generated test cases.")>]
[<assembly: AssemblyVersionAttribute("2.16.5")>]
[<assembly: AssemblyFileVersionAttribute("2.16.5")>]
[<assembly: AssemblyVersionAttribute("2.16.6")>]
[<assembly: AssemblyFileVersionAttribute("2.16.6")>]
[<assembly: InternalsVisibleToAttribute("FsCheck.Test")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsCheck"
let [<Literal>] AssemblyProduct = "FsCheck"
let [<Literal>] AssemblyDescription = "FsCheck is a tool for testing .NET programs automatically using randomly generated test cases."
let [<Literal>] AssemblyVersion = "2.16.5"
let [<Literal>] AssemblyFileVersion = "2.16.5"
let [<Literal>] AssemblyVersion = "2.16.6"
let [<Literal>] AssemblyFileVersion = "2.16.6"
let [<Literal>] InternalsVisibleTo = "FsCheck.Test"

0 comments on commit af0b443

Please sign in to comment.