Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfoxy committed May 30, 2020
1 parent d55854f commit bbae249
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 2.1.3 - 2020-05-30
* RandomAccessLists zip, reduce, map2
* doc projects netcoreapp3.1 build, thanks Grzegorz Dziadkiewicz

#### 2.1.2 - 2019-12-24
* Fix FSharp.Core assembly reference version

Expand Down
5 changes: 5 additions & 0 deletions docs/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ <h3 class="muted"><a href="/FSharpx.Collections/index.html">FSharpx.Collections<
<div class="row">
<div class="span9" id="main">

<h4><a name="2-1-3-2020-05-30" class="anchor" href="#2-1-3-2020-05-30">2.1.3 - 2020-05-30</a></h4>
<ul>
<li>RandomAccessLists zip, reduce, map2</li>
<li>doc projects netcoreapp3.1 build, thanks Grzegorz Dziadkiewicz</li>
</ul>
<h4><a name="2-1-2-2019-12-24" class="anchor" href="#2-1-2-2019-12-24">2.1.2 - 2019-12-24</a></h4>
<ul>
<li>Fix FSharp.Core assembly reference version</li>
Expand Down
8 changes: 4 additions & 4 deletions src/FSharpx.Collections.Experimental/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyDescriptionAttribute("FSharpx.Collections is a collection of datastructures for use with F# and C#.")>]
[<assembly: InternalsVisibleToAttribute("FSharpx.Collections.Tests")>]
[<assembly: InternalsVisibleToAttribute("FSharpx.Collections.Experimental.Tests")>]
[<assembly: AssemblyVersionAttribute("2.1.2")>]
[<assembly: AssemblyFileVersionAttribute("2.1.2")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

Expand All @@ -19,6 +19,6 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyDescription = "FSharpx.Collections is a collection of datastructures for use with F# and C#."
let [<Literal>] InternalsVisibleTo = "FSharpx.Collections.Tests"
let [<Literal>] InternalsVisibleTo_1 = "FSharpx.Collections.Experimental.Tests"
let [<Literal>] AssemblyVersion = "2.1.2"
let [<Literal>] AssemblyFileVersion = "2.1.2"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyConfiguration = "Release"
8 changes: 4 additions & 4 deletions src/FSharpx.Collections/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyDescriptionAttribute("FSharpx.Collections is a collection of datastructures for use with F# and C#.")>]
[<assembly: InternalsVisibleToAttribute("FSharpx.Collections.Tests")>]
[<assembly: InternalsVisibleToAttribute("FSharpx.Collections.Experimental.Tests")>]
[<assembly: AssemblyVersionAttribute("2.1.2")>]
[<assembly: AssemblyFileVersionAttribute("2.1.2")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

Expand All @@ -19,6 +19,6 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyDescription = "FSharpx.Collections is a collection of datastructures for use with F# and C#."
let [<Literal>] InternalsVisibleTo = "FSharpx.Collections.Tests"
let [<Literal>] InternalsVisibleTo_1 = "FSharpx.Collections.Experimental.Tests"
let [<Literal>] AssemblyVersion = "2.1.2"
let [<Literal>] AssemblyFileVersion = "2.1.2"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyConfiguration = "Release"

0 comments on commit bbae249

Please sign in to comment.