Skip to content

Commit 6d1fd94

Browse files
authored
Add release notes for 4.6.1. (#2054)
1 parent dfaf07d commit 6d1fd94

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

RELEASE_NOTES.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#### 4.6.1 - 02/2022
2+
3+
* Fix Type parameter comment lost in formatting. [#2052](https://github.com/fsprojects/fantomas/issues/2052)
4+
* Fix Unicode string containing "\000" is replaced by null character when being formatted. [#2050](https://github.com/fsprojects/fantomas/issues/2050)
5+
* Fix Idempotency problem when comment after opening bracket in Elmish expression without children. [#2037](https://github.com/fsprojects/fantomas/issues/2037)
6+
* Fix Default settings in .editorconfig files. [#2030](https://github.com/fsprojects/fantomas/issues/2030)
7+
* Fix "cannot determine if synExpr Paren" when Lambda after If expression. [#2015](https://github.com/fsprojects/fantomas/issues/2015)
8+
* Fix Comment removed in do binding. [#1875](https://github.com/fsprojects/fantomas/issues/1875)
9+
* Fix Comment after arrow is missing in SynExpr.Lambda. [#1870](https://github.com/fsprojects/fantomas/issues/1870)
10+
* Fix else if turned into elif when KeepIndentInBranch = true. [#1818](https://github.com/fsprojects/fantomas/issues/1818)
11+
* Fix Comment after closing brace in nested record is lost with default settings. [#1172](https://github.com/fsprojects/fantomas/issues/1172)
12+
* Fix Inconsistent spacing of multiline object expressions in lists with default settings. [#1170](https://github.com/fsprojects/fantomas/issues/1170)
13+
* Fix type definition in signature file wrapped with hash directives. [#1115](https://github.com/fsprojects/fantomas/issues/1115)
14+
* Fix Strict mode strips literal strings. [#560](https://github.com/fsprojects/fantomas/issues/560)
15+
116
#### 4.6.0 - 01/2022
217

318
* Unify Fantomas versions across editors. [#1844](https://github.com/fsprojects/fantomas/issues/1844)

src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net5.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<GenerateProgramFile>false</GenerateProgramFile>
7-
<Version>4.6.0</Version>
7+
<Version>4.6.1</Version>
88
<NoWarn>FS0988</NoWarn>
99
<WarningsAsErrors>FS0025</WarningsAsErrors>
1010
</PropertyGroup>

src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RollForward>Major</RollForward>
99
<ToolCommandName>fantomas</ToolCommandName>
1010
<PackAsTool>True</PackAsTool>
11-
<Version>4.6.0</Version>
11+
<Version>4.6.1</Version>
1212
<AssemblyName>fantomas-tool</AssemblyName>
1313
<WarningsAsErrors>FS0025</WarningsAsErrors>
1414
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>

src/Fantomas.Extras/Fantomas.Extras.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>4.6.0</Version>
5+
<Version>4.6.1</Version>
66
<Description>Utility package for Fantomas</Description>
77
<WarningsAsErrors>FS0025</WarningsAsErrors>
88
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>

src/Fantomas.Tests/ElmishTests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1463,4 +1463,4 @@ ReactDom.render (
14631463
App() ],
14641464
root
14651465
)
1466-
"""
1466+
"""

src/Fantomas.Tests/Fantomas.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>4.6.0</Version>
3+
<Version>4.6.1</Version>
44
<NoWarn>FS0988</NoWarn>
55
<TargetFramework>net5.0</TargetFramework>
66
<WarningsAsErrors>FS0025</WarningsAsErrors>

src/Fantomas/Fantomas.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>4.6.0</Version>
5+
<Version>4.6.1</Version>
66
<Description>Source code formatter for F#</Description>
77
<WarningsAsErrors>FS0025</WarningsAsErrors>
88
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>

0 commit comments

Comments
 (0)