Skip to content

Commit

Permalink
Update to V 4.1.0-beta-001 (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Sep 3, 2020
1 parent 62d9a0d commit 573b009
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
9 changes: 9 additions & 0 deletions RELEASE_NOTES.md
@@ -1,3 +1,12 @@
### 4.1.0-beta-001 - 09/2020

* Fix Allow line break after return to avoid excessive indenting/aligning. [#1062](https://github.com/fsprojects/fantomas/issues/1062)
* Fix Name of static members are removed/empty. [#1059](https://github.com/fsprojects/fantomas/issues/1059)
* 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)
* Fix Multiline string in use expression. [#1055](https://github.com/fsprojects/fantomas/issues/1055)
* Fix Issue #246 has returned in v4.0.0. [#1051](https://github.com/fsprojects/fantomas/issues/1051)
* Fix Indentation after multiple hash directives is off. [#1026](https://github.com/fsprojects/fantomas/issues/1026)

### 4.1.0-alpha-001 - 09/2020

* Blacklist files or code blocks by `.fantomasignore` file. [#420](https://github.com/fsprojects/fantomas/issues/420)
Expand Down
Expand Up @@ -4,8 +4,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<Version>4.1.0-alpha-001</Version>
<Version>4.0.0-beta-003</Version>
<Version>4.1.0-beta-001</Version>
<NoWarn>FS0988</NoWarn>
<WarningsAsErrors>FS0025</WarningsAsErrors>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<ToolCommandName>fantomas</ToolCommandName>
<PackAsTool>True</PackAsTool>
<Version>4.1.0-alpha-001</Version>
<Version>4.1.0-beta-001</Version>
<AssemblyName>fantomas-tool</AssemblyName>
<WarningsAsErrors>FS0025</WarningsAsErrors>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Fantomas.Extras/Fantomas.Extras.fsproj
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>4.1.0-alpha-001</Version>
<Version>4.1.0-beta-001</Version>
<Description>Utility package for Fantomas</Description>
<WarningsAsErrors>FS0025</WarningsAsErrors>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Fantomas.Tests/Fantomas.Tests.fsproj
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>4.1.0-alpha-001</Version>
<Version>4.1.0-beta-001</Version>
<NoWarn>FS0988</NoWarn>
<TargetFramework>netcoreapp3.1</TargetFramework>
<WarningsAsErrors>FS0025</WarningsAsErrors>
Expand Down
3 changes: 1 addition & 2 deletions src/Fantomas/Fantomas.fsproj
Expand Up @@ -2,8 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>4.1.0-alpha-001</Version>
<Version>4.0.0-beta-003</Version>
<Version>4.1.0-beta-001</Version>
<Description>Source code formatter for F#</Description>
<WarningsAsErrors>FS0025</WarningsAsErrors>
</PropertyGroup>
Expand Down

0 comments on commit 573b009

Please sign in to comment.