Skip to content

Commit

Permalink
Merge branch 'gus/notes-for-131'
Browse files Browse the repository at this point in the history
  • Loading branch information
wallymathieu committed Dec 2, 2022
2 parents ad56a34 + cfeb0f9 commit 8a6561f
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 8 deletions.
15 changes: 11 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<Description>
A complete and extensible base library for F#.
</Description>
<Authors>Gusty</Authors>
<Copyright>2012-2020 Gustavo P. Leon (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
<Authors>gusty; wallymathieu</Authors>
<Copyright>2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors)</Copyright>
<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.2.0</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 All @@ -30,6 +35,8 @@
<!-- disable sourcelink on mono, to workaround https://github.com/dotnet/sourcelink/issues/155 -->
<EnableSourceLink Condition=" '$(OS)' != 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' ">false</EnableSourceLink>
<EnableSourceControlManagerQueries>$(EnableSourceLink)</EnableSourceControlManagerQueries>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildThisFileDirectory)/RELEASE_NOTES.txt"))</PackageReleaseNotes>

</PropertyGroup>

<!-- mono -->
Expand Down
11 changes: 7 additions & 4 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#### 1.3.0 - November 13 2022
- Proper SeqT implementation
#### 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
Expand All @@ -9,8 +13,7 @@
- Use InlineIfLambda attribute in CEs
- Some missing Option, Result zip functions
- Add NonEmptyList.sequence
- Improve null handling
- Fix: Free.map3
- Improve null handling for Array extensions

#### 1.2.4 - May 5 2022
- Fix: Fable regressions
Expand Down
18 changes: 18 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 8a6561f

Please sign in to comment.