Skip to content

Commit a93dd73

Browse files
committed
Bump version to 0.31.1
1 parent 29433a1 commit a93dd73

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 0.31.1 - 07.02.2017
2+
3+
* Allow for inconsistent casing of "Fsharp" when detecting: #149.
4+
15
#### 0.31.0 - 27.01.2017
26

37
* Improvements from downstream ionide fork:

src/FsAutoComplete.Suave/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("FsAutoComplete.Suave")>]
66
[<assembly: AssemblyProductAttribute("FsAutoComplete.Suave")>]
77
[<assembly: AssemblyDescriptionAttribute("A Suave web server for interfacing with FSharp.Compiler.Service over a HTTP.")>]
8-
[<assembly: AssemblyVersionAttribute("0.31.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.31.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.31.1")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FsAutoComplete.Suave"
1414
let [<Literal>] AssemblyProduct = "FsAutoComplete.Suave"
1515
let [<Literal>] AssemblyDescription = "A Suave web server for interfacing with FSharp.Compiler.Service over a HTTP."
16-
let [<Literal>] AssemblyVersion = "0.31.0"
17-
let [<Literal>] AssemblyFileVersion = "0.31.0"
16+
let [<Literal>] AssemblyVersion = "0.31.1"
17+
let [<Literal>] AssemblyFileVersion = "0.31.1"

src/FsAutoComplete/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("FsAutoComplete")>]
66
[<assembly: AssemblyProductAttribute("FsAutoComplete")>]
77
[<assembly: AssemblyDescriptionAttribute("A command line tool for interfacing with FSharp.Compiler.Service over a pipe.")>]
8-
[<assembly: AssemblyVersionAttribute("0.31.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.31.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.31.1")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FsAutoComplete"
1414
let [<Literal>] AssemblyProduct = "FsAutoComplete"
1515
let [<Literal>] AssemblyDescription = "A command line tool for interfacing with FSharp.Compiler.Service over a pipe."
16-
let [<Literal>] AssemblyVersion = "0.31.0"
17-
let [<Literal>] AssemblyFileVersion = "0.31.0"
16+
let [<Literal>] AssemblyVersion = "0.31.1"
17+
let [<Literal>] AssemblyFileVersion = "0.31.1"

0 commit comments

Comments
 (0)