Skip to content

Commit 13b96ee

Browse files
committed
Bump version to 0.31.0
1 parent 4dd66f0 commit 13b96ee

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

RELEASE_NOTES.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#### 0.31.0 - 27.01.2017
2+
3+
* Improvements from downstream ionide fork:
4+
- support msbuild15, same as preview2
5+
- Add Background checking
6+
- Performance updates for find usages
7+
- Implement GetNamespaceSuggestions
8+
- Update FSharpLint version
9+
- Optimize GetNamespaceSuggestions
10+
- Optimize GetDeclarations
11+
- Add endpoint for F1 Help
12+
- ... and more!
13+
14+
(Some of these features only exposed currently via HTTP interface)
15+
116
#### 0.30.2 - 31.10.2016
217

318
* Add parse errors, tooltips for keywords, and signatures for

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.30.2")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.30.2")>]
8+
[<assembly: AssemblyVersionAttribute("0.31.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
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.30.2"
17-
let [<Literal>] AssemblyFileVersion = "0.30.2"
16+
let [<Literal>] AssemblyVersion = "0.31.0"
17+
let [<Literal>] AssemblyFileVersion = "0.31.0"

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.30.2")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.30.2")>]
8+
[<assembly: AssemblyVersionAttribute("0.31.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
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.30.2"
17-
let [<Literal>] AssemblyFileVersion = "0.30.2"
16+
let [<Literal>] AssemblyVersion = "0.31.0"
17+
let [<Literal>] AssemblyFileVersion = "0.31.0"

0 commit comments

Comments
 (0)