diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 95abc150ad..ca2b63a8ca 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,15 @@ +#### 4.5.0-beta-003 - 07/2021 + +* Fix Fantomas introduces meaningless match block. [#1806](https://github.com/fsprojects/fantomas/issues/1806) +* Fix Lazy causes indentation to produce invalid F#. [#1805](https://github.com/fsprojects/fantomas/issues/1805) +* Fix Nested Fluent API produces wrong code: misses indentation. [#1804](https://github.com/fsprojects/fantomas/issues/1804) +* Fix Tuple should be consider short branch in KeepIndentInBranch setting. [#1800](https://github.com/fsprojects/fantomas/issues/1800) +* Fix Fantomas adds "of" to a union case when it is seemingly _too long_. [#1796](https://github.com/fsprojects/fantomas/issues/1796) +* Fix Function application in if expression should remain on single line. [#1795](https://github.com/fsprojects/fantomas/issues/1795) +* Fix Conditional code is not printed. [#1794](https://github.com/fsprojects/fantomas/issues/1794) +* Fix Records in list in a pattern match always have a semicolon. [#1793](https://github.com/fsprojects/fantomas/issues/1793) +* Fix parenthesis expression in then should further indent inner expression. [#1777](https://github.com/fsprojects/fantomas/issues/1777) + #### 4.5.0-beta-002 - 06/2021 * Fix Wild cards in lambda. [#1789](https://github.com/fsprojects/fantomas/issues/1789) diff --git a/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj b/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj index 8a6ecd770b..6011d8d669 100644 --- a/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj +++ b/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj @@ -4,7 +4,7 @@ net5.0 false false - 4.5.0-beta-002 + 4.5.0-beta-003 FS0988 FS0025 diff --git a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj index 8260049d14..8a1e2bf5fe 100644 --- a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj +++ b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj @@ -8,7 +8,7 @@ Major fantomas True - 4.5.0-beta-002 + 4.5.0-beta-003 fantomas-tool FS0025 LICENSE.md diff --git a/src/Fantomas.Extras/Fantomas.Extras.fsproj b/src/Fantomas.Extras/Fantomas.Extras.fsproj index f0c781fefc..12b691b960 100644 --- a/src/Fantomas.Extras/Fantomas.Extras.fsproj +++ b/src/Fantomas.Extras/Fantomas.Extras.fsproj @@ -2,7 +2,7 @@ netstandard2.0 - 4.5.0-beta-002 + 4.5.0-beta-003 Utility package for Fantomas FS0025 LICENSE.md diff --git a/src/Fantomas.Tests/Fantomas.Tests.fsproj b/src/Fantomas.Tests/Fantomas.Tests.fsproj index ca1b77e837..8b52b21ca4 100644 --- a/src/Fantomas.Tests/Fantomas.Tests.fsproj +++ b/src/Fantomas.Tests/Fantomas.Tests.fsproj @@ -1,6 +1,6 @@ - 4.5.0-beta-002 + 4.5.0-beta-003 FS0988 net5.0 FS0025 diff --git a/src/Fantomas/Fantomas.fsproj b/src/Fantomas/Fantomas.fsproj index 57ec8083c9..3ef7cc4552 100644 --- a/src/Fantomas/Fantomas.fsproj +++ b/src/Fantomas/Fantomas.fsproj @@ -2,7 +2,7 @@ netstandard2.0 - 4.5.0-beta-002 + 4.5.0-beta-003 Source code formatter for F# FS0025 LICENSE.md