Skip to content

Commit 8751a49

Browse files
committed
Merge branch 'gus/notes-for-131' into v1.3
2 parents df2646a + 9d8fc8f commit 8751a49

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

Directory.Build.props

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Description>
77
A complete and extensible base library for F#.
88
</Description>
9-
<Authors>Gusty</Authors>
10-
<Copyright>2012-2020 Gustavo P. Leon (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
9+
<Authors>gusty; wallymathieu</Authors>
10+
<Copyright>2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
1111
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
1212
<PackageProjectUrl>https://github.com/fsprojects/FSharpPlus</PackageProjectUrl>
1313
<PackageIconUrl>https://raw.github.com/fsprojects/FSharpPlus/master/docsrc/files/img/logo.png</PackageIconUrl>
@@ -30,6 +30,8 @@
3030
<!-- disable sourcelink on mono, to workaround https://github.com/dotnet/sourcelink/issues/155 -->
3131
<EnableSourceLink Condition=" '$(OS)' != 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' ">false</EnableSourceLink>
3232
<EnableSourceControlManagerQueries>$(EnableSourceLink)</EnableSourceControlManagerQueries>
33+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildThisFileDirectory)/RELEASE_NOTES.txt"))</PackageReleaseNotes>
34+
3335
</PropertyGroup>
3436

3537
<!-- mono -->

RELEASE_NOTES.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
#### 1.3.0 - November 13 2022
2-
- Proper SeqT implementation
1+
#### 1.3.1 - November 29 2022
32
- Applicative Computation Expressions
3+
- Support for ValueOption, ValueTask and ValueTuple
4+
- Possibility to use explicit type parameters (plus, Seq.sum, guard, ofBytes, ofBytesWithOptions, ofBytesBE, parse, tryParse)
5+
- Use InlineIfLambda attribute in CEs
6+
- Small fixes (add lift3 for tuples, fix join for ref tuple and Free.map3)
7+
- Small improvements in type inference
48
- Use F# Core 6.0.6
59
- Speed up List and Array extensions using Collectors
610
- Use FSharp.Core implementations for old functions that were adopted there
@@ -9,8 +13,7 @@
913
- Use InlineIfLambda attribute in CEs
1014
- Some missing Option, Result zip functions
1115
- Add NonEmptyList.sequence
12-
- Improve null handling
13-
- Fix: Free.map3
16+
- Improve null handling for Array extensions
1417

1518
#### 1.2.4 - May 5 2022
1619
- Fix: Fable regressions

RELEASE_NOTES.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#### 1.3.1 - November 29 2022
2+
- Applicative Computation Expressions
3+
- Support for ValueOption, ValueTask and ValueTuple
4+
- Possibility to use explicit type parameters (plus, Seq.sum, guard, ofBytes, ofBytesWithOptions, ofBytesBE, parse, tryParse)
5+
- Use InlineIfLambda attribute in CEs
6+
- Small fixes (add lift3 for tuples, fix join for ref tuple and Free.map3)
7+
- Small improvements in type inference
8+
- Use F# Core 6.0.6
9+
- Speed up List and Array extensions using Collectors
10+
- Use FSharp.Core implementations for old functions that were adopted there
11+
- Add some missing Option, Result zip functions
12+
- Add explicit type parameters
13+
- Use InlineIfLambda attribute in CEs
14+
- Some missing Option, Result zip functions
15+
- Add NonEmptyList.sequence
16+
- Improve null handling for Array extensions

0 commit comments

Comments
 (0)