diff --git a/Directory.Build.props b/Directory.Build.props index 7748ba9e7..e95613c91 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -6,11 +6,12 @@ A complete and extensible base library for F#. - Gusty - 2012-2020 Gustavo P. Leon (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors) - http://opensource.org/licenses/Apache-2.0 + gusty; wallymathieu + 2012-2022 Gustavo M. Wild - Oskar Gewalli (and contributors https://github.com/fsprojects/FSharpPlus/graphs/contributors) + Apache-2.0 https://github.com/fsprojects/FSharpPlus - https://raw.github.com/fsprojects/FSharpPlus/master/docsrc/files/img/logo.png + logo.png + README.md f# FSharp Applicative Monad MonadTransformer Arrow Overloading 1.2.0 @@ -21,6 +22,10 @@ https://github.com/fsprojects/FSharpPlus/blob/master/RELEASE_NOTES.md https://github.com/fsprojects/FSharpPlus/blob/master/LICENSE.md + + + + $([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)")) @@ -30,6 +35,8 @@ false $(EnableSourceLink) + $([System.IO.File]::ReadAllText("$(MSBuildThisFileDirectory)/RELEASE_NOTES.txt")) + diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index fbfdbef63..dc56e47b1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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 @@ -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 diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt new file mode 100644 index 000000000..ff46cc2dc --- /dev/null +++ b/RELEASE_NOTES.txt @@ -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