Skip to content

Commit 8a6561f

Browse files
committed
Merge branch 'gus/notes-for-131'
2 parents ad56a34 + cfeb0f9 commit 8a6561f

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

Directory.Build.props

+11-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
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>
11-
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
9+
<Authors>gusty; wallymathieu</Authors>
10+
<Copyright>2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
11+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1212
<PackageProjectUrl>https://github.com/fsprojects/FSharpPlus</PackageProjectUrl>
13-
<PackageIconUrl>https://raw.github.com/fsprojects/FSharpPlus/master/docsrc/files/img/logo.png</PackageIconUrl>
13+
<PackageIcon>logo.png</PackageIcon>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
1415
<PackageTags>f# FSharp Applicative Monad MonadTransformer Arrow Overloading</PackageTags>
1516
<VersionPrefix>1.2.0</VersionPrefix>
1617
<VersionSuffix></VersionSuffix>
@@ -21,6 +22,10 @@
2122
<FsDocsReleaseNotesLink>https://github.com/fsprojects/FSharpPlus/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
2223
<FsDocsLicenseLink>https://github.com/fsprojects/FSharpPlus/blob/master/LICENSE.md</FsDocsLicenseLink>
2324
</PropertyGroup>
25+
<ItemGroup>
26+
<None Include="$(MSBuildThisFileDirectory)/docsrc/content/img/logo.png" Pack="true" PackagePath="\"/>
27+
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="\"/>
28+
</ItemGroup>
2429

2530
<PropertyGroup>
2631
<RepoRootDir>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)"))</RepoRootDir>
@@ -30,6 +35,8 @@
3035
<!-- disable sourcelink on mono, to workaround https://github.com/dotnet/sourcelink/issues/155 -->
3136
<EnableSourceLink Condition=" '$(OS)' != 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' ">false</EnableSourceLink>
3237
<EnableSourceControlManagerQueries>$(EnableSourceLink)</EnableSourceControlManagerQueries>
38+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildThisFileDirectory)/RELEASE_NOTES.txt"))</PackageReleaseNotes>
39+
3340
</PropertyGroup>
3441

3542
<!-- mono -->

RELEASE_NOTES.md

+7-4
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

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

0 commit comments

Comments
 (0)