Skip to content

Commit cca2679

Browse files
authored
Merge pull request #296 from nojaf/2.8.1
preparing 2.8.1 release
2 parents bc75bf0 + f2beecc commit cca2679

File tree

9 files changed

+29
-15
lines changed

9 files changed

+29
-15
lines changed

.paket/paket.exe

6.5 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Fantomas
55

66
F# source code formatter, inspired by [scalariform](https://github.com/mdr/scalariform) for Scala, [ocp-indent](https://github.com/OCamlPro/ocp-indent) for OCaml and [PythonTidy](https://github.com/acdha/PythonTidy) for Python.
77

8-
[![Build Status Travis](https://travis-ci.org/dungpa/fantomas.png)](https://travis-ci.org/dungpa/fantomas)
9-
[![Build Status AppVeyor](https://ci.appveyor.com/api/projects/status/github/dungpa/fantomas)](https://ci.appveyor.com/project/dungpa/fantomas)
8+
[![Build Status Travis](https://travis-ci.org/fsprojects/fantomas.png)](https://travis-ci.org/fsprojects/fantomas)
9+
[![Build Status AppVeyor](https://ci.appveyor.com/api/projects/status/github/nojaf/fantomas)](https://ci.appveyor.com/project/nojaf/fantomas)
1010

1111
## Purpose
1212
This project aims at formatting F# source files based on a given configuration.

RELEASE_NOTES.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
#### 2.8.0 - xx-06-2018
1+
#### 2.8.1 - 09-2018
2+
* Force parameter is *true* by default. [#267](https://github.com/fsprojects/fantomas/issues/267)
3+
* Formatting compiler directives with inactive code is incorrect. [#270](https://github.com/fsprojects/fantomas/issues/270)
4+
* Fix "Fantômas" mistranslation in README. [#273](https://github.com/fsprojects/fantomas/pull/273)
5+
* Fix for preserve EOL feature. [#275](https://github.com/fsprojects/fantomas/pull/275)
6+
* rec keyword is removed from recursive modules [#274](https://github.com/fsprojects/fantomas/issues/274)
7+
* Access modifiers in method signatures in signature files are not formatted correctly. [#284](https://github.com/fsprojects/fantomas/issues/284)
8+
* `#if FOO || BAR => #if FOO` [#280](https://github.com/fsprojects/fantomas/issues/280)
9+
* `override` becomes `member` in interface implementations. [#263](https://github.com/fsprojects/fantomas/issues/263)
10+
* Operator >>.~ incorrectly formatted. [#291](https://github.com/fsprojects/fantomas/issues/291)
11+
* Bad choice of line break location in boolean equality expression. [#248](https://github.com/fsprojects/fantomas/issues/248)
12+
* Pipe operator inside quotation expression leads to wrong indentation. [#256](https://github.com/fsprojects/fantomas/issues/256)
13+
* broken indent by pipe formatting. [#269](https://github.com/fsprojects/fantomas/issues/269)
14+
15+
#### 2.8.0 - 07-2018
216
* Wrong indentation of `else` after comment [#241](https://github.com/dungpa/fantomas/issues/241)
317
* Change Content to None [#238](https://github.com/dungpa/fantomas/issues/238)
418
* Formatting of code with a pipe and a lambda expression [#211](https://github.com/dungpa/fantomas/issues/211)

src/Fantomas.Cmd/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Fantomas")>]
66
[<assembly: AssemblyProductAttribute("Fantomas")>]
77
[<assembly: AssemblyDescriptionAttribute("Source code formatter for F#")>]
8-
[<assembly: AssemblyVersionAttribute("2.8.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.8.0")>]
8+
[<assembly: AssemblyVersionAttribute("2.8.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.8.1")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Fantomas"
1414
let [<Literal>] AssemblyProduct = "Fantomas"
1515
let [<Literal>] AssemblyDescription = "Source code formatter for F#"
16-
let [<Literal>] AssemblyVersion = "2.8.0"
17-
let [<Literal>] AssemblyFileVersion = "2.8.0"
16+
let [<Literal>] AssemblyVersion = "2.8.1"
17+
let [<Literal>] AssemblyFileVersion = "2.8.1"

src/Fantomas.Cmd/Fantomas.Cmd.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks>
6-
<Version>2.8.0</Version>
6+
<Version>2.8.1</Version>
77
<AssemblyName>dotnet-fantomas</AssemblyName>
88
</PropertyGroup>
99
<ItemGroup>

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>netcoreapp2.1</TargetFramework>
55
<ToolCommandName>fantomas</ToolCommandName>
66
<PackAsTool>True</PackAsTool>
7-
<Version>2.8.0</Version>
7+
<Version>2.8.1</Version>
88
<AssemblyName>fantomas-tool</AssemblyName>
99
</PropertyGroup>
1010
<ItemGroup>

src/Fantomas.Tests/Fantomas.Tests.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
<TargetFrameworks>netcoreapp2.0;net45</TargetFrameworks>
5-
<Version>2.8.0</Version>
5+
<Version>2.8.1</Version>
66
<NoWarn>FS0988</NoWarn>
77
</PropertyGroup>
88
<ItemGroup>

src/Fantomas/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ open System.Runtime.CompilerServices
77
[<assembly: AssemblyTitleAttribute("FantomasLib")>]
88
[<assembly: AssemblyProductAttribute("Fantomas")>]
99
[<assembly: AssemblyDescriptionAttribute("Source code formatter for F#")>]
10-
[<assembly: AssemblyVersionAttribute("2.8.0")>]
11-
[<assembly: AssemblyFileVersionAttribute("2.8.0")>]
10+
[<assembly: AssemblyVersionAttribute("2.8.1")>]
11+
[<assembly: AssemblyFileVersionAttribute("2.8.1")>]
1212
do ()
1313

1414
module internal AssemblyVersionInformation =
1515
let [<Literal>] InternalsVisibleTo = "Fantomas.Tests"
1616
let [<Literal>] AssemblyTitle = "FantomasLib"
1717
let [<Literal>] AssemblyProduct = "Fantomas"
1818
let [<Literal>] AssemblyDescription = "Source code formatter for F#"
19-
let [<Literal>] AssemblyVersion = "2.8.0"
20-
let [<Literal>] AssemblyFileVersion = "2.8.0"
19+
let [<Literal>] AssemblyVersion = "2.8.1"
20+
let [<Literal>] AssemblyFileVersion = "2.8.1"

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
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
5-
<Version>2.8.0</Version>
5+
<Version>2.8.1</Version>
66
</PropertyGroup>
77
<ItemGroup>
88
<None Include="paket.references" />

0 commit comments

Comments
 (0)