Skip to content

Commit

Permalink
Update release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtschelfthout committed May 6, 2017
1 parent 54217ab commit 2790ab2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
7 changes: 5 additions & 2 deletions FsCheck Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.9.0-rc1 - To be released
* Add a .NET Standard 1.6 compatible build to FsCheck, FsCheck.NUnit and FsCheck.Xunit. (with Enrico Sada)
* Update to latest FSharp.Core 4.1.

### 2.8.2 - 6 May 2017
* Add Gen.optionOf. (by Mark Seemann)

Expand Down Expand Up @@ -47,8 +51,7 @@
### 2.5.0 - 7 June 2016
* Add Gen.growingElements.
* Add default generator and shrinker for IPAddress and MailAddress.
* Gen.eval now uses the given size directly to generate an element of that size, instead of randomly choosing a size up to the given size. This means that on average
test case sizes are bigger.
* Gen.eval now uses the given size directly to generate an element of that size, instead of randomly choosing a size up to the given size. This means that on average test case sizes are bigger.
* Gen.frequency now throws a clearer exeption if no element can be generated.
* Renamed Gen.suchThat and Gen.suchThatOption to Gen.where or Gen.filter and Gen.tryWhere or Gen.tryFilter. (The functions/methods with the old names are still there, they are just marked Obsolete and will be removed in a future version.)
* Renamed DontSize to DoNotSize, DontShrink to DoNotShrink, DontSizeInt16 to DoNotSizeInt16 etc. (The types with the old names are still there, they are just marked Obsolete and will be removed in a future version.)
Expand Down
8 changes: 4 additions & 4 deletions src/FsCheck.NUnit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.8.2")>]
[<assembly: AssemblyFileVersionAttribute("2.8.2")>]
[<assembly: AssemblyVersionAttribute("2.9.0")>]
[<assembly: AssemblyFileVersionAttribute("2.9.0")>]
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.8.2"
let [<Literal>] AssemblyFileVersion = "2.8.2"
let [<Literal>] AssemblyVersion = "2.9.0"
let [<Literal>] AssemblyFileVersion = "2.9.0"
8 changes: 4 additions & 4 deletions src/FsCheck.Xunit/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.8.2")>]
[<assembly: AssemblyFileVersionAttribute("2.8.2")>]
[<assembly: AssemblyVersionAttribute("2.9.0")>]
[<assembly: AssemblyFileVersionAttribute("2.9.0")>]
[<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.8.2"
let [<Literal>] AssemblyFileVersion = "2.8.2"
let [<Literal>] AssemblyVersion = "2.9.0"
let [<Literal>] AssemblyFileVersion = "2.9.0"
let [<Literal>] InternalsVisibleTo = "FsCheck.Test"
8 changes: 4 additions & 4 deletions src/FsCheck/AssemblyInfo.fs
Original file line number Diff line number Diff line change
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.8.2")>]
[<assembly: AssemblyFileVersionAttribute("2.8.2")>]
[<assembly: AssemblyVersionAttribute("2.9.0")>]
[<assembly: AssemblyFileVersionAttribute("2.9.0")>]
[<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.8.2"
let [<Literal>] AssemblyFileVersion = "2.8.2"
let [<Literal>] AssemblyVersion = "2.9.0"
let [<Literal>] AssemblyFileVersion = "2.9.0"
let [<Literal>] InternalsVisibleTo = "FsCheck.Test"

0 comments on commit 2790ab2

Please sign in to comment.