Skip to content

Commit 0d32005

Browse files
authored
Add release notes for 4.1. (#1127)
1 parent 7cb0382 commit 0d32005

File tree

6 files changed

+14
-25
lines changed

6 files changed

+14
-25
lines changed

RELEASE_NOTES.md

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,26 @@
1-
### 4.1.0-beta-004 09/2020
1+
### 4.1.0 - 09/2020
22

3-
* Fixed some regression introduced by [#992](https://github.com/fsprojects/fantomas/pull/992).
3+
* Ignore files by `.fantomasignore` file. [#420](https://github.com/fsprojects/fantomas/issues/420)
4+
* Limit trivia by AST MainNode name. [#992](https://github.com/fsprojects/fantomas/pull/992)
5+
* Lead by example. [#666](https://github.com/fsprojects/fantomas/issues/666)
6+
* Verify all unit test whether the formatted code is valid. [#842](https://github.com/fsprojects/fantomas/issues/842)
7+
* Fix Comments get dropped from the end of multi-line records. [#1124](https://github.com/fsprojects/fantomas/issues/1124)
8+
* Fix Functions in nested modules which follow a type consisting of only one member of a DU are un-nested from that module. [#1123](https://github.com/fsprojects/fantomas/issues/1123)
9+
* Fix After discriminated union in module wrongly indented. [#1122](https://github.com/fsprojects/fantomas/issues/1122)
10+
* Fix Extra whitespace with a type which has an attribute. [#1116](https://github.com/fsprojects/fantomas/issues/1116)
411
* Fix Adds newline between comments and (all but the first) attribute. [#1108](https://github.com/fsprojects/fantomas/issues/1108)
512
* Fix Extra whitespace lines added in fsi files at the end of a nested module declaration. [#1105](https://github.com/fsprojects/fantomas/issues/1105)
6-
7-
### 4.1.0-beta-003 09/2020
8-
9-
* Lead by example. [#666](https://github.com/fsprojects/fantomas/issues/666)
1013
* Fix Extra new line is added before attributes. [#1097](https://github.com/fsprojects/fantomas/issues/1097)
1114
* Fix Comments after closing brace are lost. [#1096](https://github.com/fsprojects/fantomas/issues/1096)
1215
* Fix Comment after Or operator lost. [#1095](https://github.com/fsprojects/fantomas/issues/1095)
1316
* Fix Trivia before bar is being repeated. [#1083](https://github.com/fsprojects/fantomas/issues/1083)
1417
* Fix Comment after arrow is being duplicated. [#1082](https://github.com/fsprojects/fantomas/issues/1082)
15-
16-
### 4.1.0-beta-002 - 09/2020
17-
18-
* Fixed some regression introduced by [#992](https://github.com/fsprojects/fantomas/pull/992).
19-
* Fix Comment after arrow is being duplicated. [#1082](https://github.com/fsprojects/fantomas/issues/1082)
20-
21-
### 4.1.0-beta-001 - 09/2020
22-
2318
* Fix Allow line break after return to avoid excessive indenting/aligning. [#1062](https://github.com/fsprojects/fantomas/issues/1062)
2419
* Fix Name of static members are removed/empty. [#1059](https://github.com/fsprojects/fantomas/issues/1059)
2520
* Fix When using parenthesis in type definition, it will sometimes keep adding additional () for each time fantomas i run. [#1057](https://github.com/fsprojects/fantomas/issues/1057)
2621
* Fix Multiline string in use expression. [#1055](https://github.com/fsprojects/fantomas/issues/1055)
2722
* Fix Issue #246 has returned in v4.0.0. [#1051](https://github.com/fsprojects/fantomas/issues/1051)
2823
* Fix Indentation after multiple hash directives is off. [#1026](https://github.com/fsprojects/fantomas/issues/1026)
29-
30-
### 4.1.0-alpha-001 - 09/2020
31-
32-
* Blacklist files or code blocks by `.fantomasignore` file. [#420](https://github.com/fsprojects/fantomas/issues/420)
33-
* Verify all unit test whether the formatted code is valid. [#842](https://github.com/fsprojects/fantomas/issues/842)
34-
* Limit trivia by AST MainNode name. [#992](https://github.com/fsprojects/fantomas/pull/992)
3524
* Fix if/then/else indented too far. [#1054](https://github.com/fsprojects/fantomas/issues/1054)
3625
* Fix Single AST node should contain trivia. [#1031](https://github.com/fsprojects/fantomas/issues/1031)
3726
* Fix Formatter adds extra newlines between type and any subsequent val in .fsi files. [#1029](https://github.com/fsprojects/fantomas/issues/1029)

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>netcoreapp3.1</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<GenerateProgramFile>false</GenerateProgramFile>
7-
<Version>4.1.0-beta-004</Version>
7+
<Version>4.1.0</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
@@ -4,7 +4,7 @@
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<ToolCommandName>fantomas</ToolCommandName>
66
<PackAsTool>True</PackAsTool>
7-
<Version>4.1.0-beta-004</Version>
7+
<Version>4.1.0</Version>
88
<AssemblyName>fantomas-tool</AssemblyName>
99
<WarningsAsErrors>FS0025</WarningsAsErrors>
1010
</PropertyGroup>

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.1.0-beta-004</Version>
5+
<Version>4.1.0</Version>
66
<Description>Utility package for Fantomas</Description>
77
<WarningsAsErrors>FS0025</WarningsAsErrors>
88
</PropertyGroup>

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.1.0-beta-004</Version>
3+
<Version>4.1.0</Version>
44
<NoWarn>FS0988</NoWarn>
55
<TargetFramework>netcoreapp3.1</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.1.0-beta-004</Version>
5+
<Version>4.1.0</Version>
66
<Description>Source code formatter for F#</Description>
77
<WarningsAsErrors>FS0025</WarningsAsErrors>
88
</PropertyGroup>

0 commit comments

Comments
 (0)