Skip to content

Commit

Permalink
Merge branch 'gus/notes-for-131' into v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wallymathieu committed Dec 2, 2022
2 parents c241fa1 + cfeb0f9 commit 9793fd1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 17 deletions.
9 changes: 7 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
</Description>
<Authors>gusty; wallymathieu</Authors>
<Copyright>2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/fsprojects/FSharpPlus</PackageProjectUrl>
<PackageIconUrl>https://raw.github.com/fsprojects/FSharpPlus/master/docsrc/files/img/logo.png</PackageIconUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>f# FSharp Applicative Monad MonadTransformer Arrow Overloading</PackageTags>
<VersionPrefix>1.3.2</VersionPrefix>
<VersionSuffix></VersionSuffix>
Expand All @@ -21,6 +22,10 @@
<FsDocsReleaseNotesLink>https://github.com/fsprojects/FSharpPlus/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
<FsDocsLicenseLink>https://github.com/fsprojects/FSharpPlus/blob/master/LICENSE.md</FsDocsLicenseLink>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/docsrc/content/img/logo.png" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<PropertyGroup>
<RepoRootDir>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)"))</RepoRootDir>
Expand Down
33 changes: 18 additions & 15 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
#### 1.3.2 - December 2 2022
- Applicative Computation Expressions
- Support for ValueOption, ValueTask and ValueTuple
- Possibility to use explicit type parameters (plus, Seq.sum, guard, ofBytes, ofBytesWithOptions, ofBytesBE, parse, tryParse)
- Use InlineIfLambda attribute in CEs
- Small fixes (add lift3 for tuples, fix join for ref tuple and Free.map3)
- Small improvements in type inference
- Use F# Core 6.0.6
- Speed up List and Array extensions using Collectors
- Use FSharp.Core implementations for old functions that were adopted there
- Add some missing Option, Result zip functions
- Add explicit type parameters
- Use InlineIfLambda attribute in CEs
- Some missing Option, Result zip functions
- Add NonEmptyList.sequence
- Improve null handling for Array extensions
------------------------------------------------------
Release Notes for FSharpPlus 1.3.1 - November 29 2022

Applicative Computation Expressions
Support for ValueOption, ValueTask and ValueTuple
Possibility to use explicit type parameters (plus, Seq.sum, guard, ofBytes, ofBytesWithOptions, ofBytesBE, parse, tryParse)
Use InlineIfLambda attribute in CEs
Small fixes (add lift3 for tuples, fix join for ref tuple and Free.map3)
Small improvements in type inference
Use F# Core 6.0.6
Speed up List and Array extensions using Collectors
Use FSharp.Core implementations for old functions that were adopted there
Add some missing Option, Result zip functions
Add explicit type parameters
Speed up by using InlineIfLambda attribute in CEs
Some missing Option, Result zip functions
Add NonEmptyList.sequence
Improve null handling for Array extensions

0 comments on commit 9793fd1

Please sign in to comment.