Skip to content

Commit a2bfd7a

Browse files
authored
Added release notes for 3.2 (#648)
* Added release notes for 3.2 * Added two extra fixes.
1 parent 129e65d commit a2bfd7a

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

RELEASE_NOTES.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
1-
### 3.2.0-beta-002 - 01/2020
2-
* Various bug fixes
1+
### 3.2.0 - 01/2020
2+
33
* Added support for settings configuration file. [#354](https://github.com/fsprojects/fantomas/issues/354)
4+
* Use Argu for commandline argument parsing. [#607](https://github.com/fsprojects/fantomas/pull/607)
5+
* Fix Unicode null escapes are *still* unescaped. [#632](https://github.com/fsprojects/fantomas/issues/632)
6+
* Fix Back ticks are removed from enum. [#626](https://github.com/fsprojects/fantomas/issues/626)
7+
* Fix Pipe is removed when DU type name matches record type name. [#641](https://github.com/fsprojects/fantomas/issues/641)
8+
* Fix fantomas --version should return version. [#625](https://github.com/fsprojects/fantomas/issues/625)
9+
* Fix Extra newline between attribute and function. [#611](https://github.com/fsprojects/fantomas/issues/611)
10+
* Fix Invalid code produced when formatting type alias for struct tuple. [#605](https://github.com/fsprojects/fantomas/issues/605)
11+
* Fix Extra newlines repeatedly being added inside an object expression. [#601](https://github.com/fsprojects/fantomas/issues/601)
12+
* Fix Empty line added on each format. [#597](https://github.com/fsprojects/fantomas/issues/597)
13+
* Fix Error when formatting DU with single choice and attribute. [#596](https://github.com/fsprojects/fantomas/issues/596)
14+
* Fix Unwanted new line after elif expression. [#588](https://github.com/fsprojects/fantomas/issues/588)
15+
* Fix Unwanted new line added. [#586](https://github.com/fsprojects/fantomas/issues/586)
16+
* Fix Empty lines in multi-line string get moved. [#577](https://github.com/fsprojects/fantomas/issues/577)
17+
* Fix Error when combining #if directive with async block and let. [#576](https://github.com/fsprojects/fantomas/issues/576)
18+
* Fix DllImport not detected when using additional attribute. [#574](https://github.com/fsprojects/fantomas/issues/574)
19+
* Fix Comment in async block gets moved. [#573](https://github.com/fsprojects/fantomas/issues/573)
20+
* Fix Enum comments removed. [#572](https://github.com/fsprojects/fantomas/issues/572)
21+
* Fix Fantomas keeps adding new lines between two interface member implementations. [#569](https://github.com/fsprojects/fantomas/issues/569)
22+
* Fix Unindented DU case causes compile error. [#567](https://github.com/fsprojects/fantomas/issues/567)
23+
* Fix Erroneous whitespace in chained accessors. [#566](https://github.com/fsprojects/fantomas/issues/566)
24+
* Fix Comments inside type signatures break formatting. [#565](https://github.com/fsprojects/fantomas/issues/565)
25+
* Fix Hash symbol in signatures requires parens to remain. [#564](https://github.com/fsprojects/fantomas/issues/564)
26+
* Fix Stack overflow in Strict mode. [#562](https://github.com/fsprojects/fantomas/issues/562)
27+
* Fix Accessibility modifiers in DUs. [#561](https://github.com/fsprojects/fantomas/issues/561)
28+
* Fix Line comment place after lambda instead of infix function. [#559](https://github.com/fsprojects/fantomas/issues/559)
29+
* Fix Sequence expression inside computation expression outputs uncompilable code. [#553](https://github.com/fsprojects/fantomas/issues/553)
30+
* Fix Comment after [ is not preserved. [#551](https://github.com/fsprojects/fantomas/issues/551)
31+
* Fix Record update indentation incorrect around comments. [#537](https://github.com/fsprojects/fantomas/issues/537)
32+
* Fix Formatting document continuously adds new lines each time it's called. [#535](https://github.com/fsprojects/fantomas/issues/535)
33+
* Fix Comments like `(fun arg -> // comment` are lost. [#534](https://github.com/fsprojects/fantomas/issues/534)
34+
* Fix KeepNewlineAfter not respected in let binding. [#524](https://github.com/fsprojects/fantomas/issues/524)
35+
* Fix Improve formatting of lambda between parenthesis. [#523](https://github.com/fsprojects/fantomas/issues/523)
36+
* Fix Crash when using --keepNewlineAfter. [#513](https://github.com/fsprojects/fantomas/issues/513)
37+
* Fix Over-aggresive folding breaks nested lambda expressions. [#486](https://github.com/fsprojects/fantomas/issues/486)
38+
* Fix Add FormatASTRangeAsync to API. [#454](https://github.com/fsprojects/fantomas/issues/454)
39+
* Fix Intrinsic type extension member signatures are erased. [#413](https://github.com/fsprojects/fantomas/issues/413)
40+
* Fix Inconsistencies in if formatting. [#135](https://github.com/fsprojects/fantomas/issues/135)
441

542
### 3.1.0 - 11/2019
643
* Fix invalid code generated after multiline string when other expressions exist on same line. [#545](https://github.com/fsprojects/fantomas/issues/545)

src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<ToolCommandName>fantomas</ToolCommandName>
77
<PackAsTool>True</PackAsTool>
8-
<Version>3.2.0-beta-002</Version>
8+
<Version>3.2.0</Version>
99
<AssemblyName>fantomas-tool</AssemblyName>
1010
</PropertyGroup>
1111
<ItemGroup>

src/Fantomas.Tests/Fantomas.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="..\netfx.props" />
33
<PropertyGroup>
4-
<Version>3.2.0-beta-002</Version>
4+
<Version>3.2.0</Version>
55
<NoWarn>FS0988</NoWarn>
66
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
77
</PropertyGroup>

src/Fantomas/Fantomas.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\netfx.props" />
44
<PropertyGroup>
55
<TargetFrameworks>netstandard2.0</TargetFrameworks>
6-
<Version>3.2.0-beta-002</Version>
6+
<Version>3.2.0</Version>
77
<Description>Source code formatter for F#</Description>
88
</PropertyGroup>
99
<ItemGroup>

0 commit comments

Comments
 (0)