Skip to content

Commit 9793fd1

Browse files
committed
Merge branch 'gus/notes-for-131' into v1.3
2 parents c241fa1 + cfeb0f9 commit 9793fd1

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed

Directory.Build.props

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
</Description>
99
<Authors>gusty; wallymathieu</Authors>
1010
<Copyright>2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
11-
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
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.3.2</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>

RELEASE_NOTES.txt

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

0 commit comments

Comments
 (0)