Skip to content

Commit

Permalink
Bump version to 0.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rneatherway committed Jan 27, 2017
1 parent 4dd66f0 commit 13b96ee
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
#### 0.31.0 - 27.01.2017

* Improvements from downstream ionide fork:
- support msbuild15, same as preview2
- Add Background checking
- Performance updates for find usages
- Implement GetNamespaceSuggestions
- Update FSharpLint version
- Optimize GetNamespaceSuggestions
- Optimize GetDeclarations
- Add endpoint for F1 Help
- ... and more!

(Some of these features only exposed currently via HTTP interface)

#### 0.30.2 - 31.10.2016

* Add parse errors, tooltips for keywords, and signatures for
Expand Down
8 changes: 4 additions & 4 deletions src/FsAutoComplete.Suave/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsAutoComplete.Suave")>]
[<assembly: AssemblyProductAttribute("FsAutoComplete.Suave")>]
[<assembly: AssemblyDescriptionAttribute("A Suave web server for interfacing with FSharp.Compiler.Service over a HTTP.")>]
[<assembly: AssemblyVersionAttribute("0.30.2")>]
[<assembly: AssemblyFileVersionAttribute("0.30.2")>]
[<assembly: AssemblyVersionAttribute("0.31.0")>]
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsAutoComplete.Suave"
let [<Literal>] AssemblyProduct = "FsAutoComplete.Suave"
let [<Literal>] AssemblyDescription = "A Suave web server for interfacing with FSharp.Compiler.Service over a HTTP."
let [<Literal>] AssemblyVersion = "0.30.2"
let [<Literal>] AssemblyFileVersion = "0.30.2"
let [<Literal>] AssemblyVersion = "0.31.0"
let [<Literal>] AssemblyFileVersion = "0.31.0"
8 changes: 4 additions & 4 deletions src/FsAutoComplete/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsAutoComplete")>]
[<assembly: AssemblyProductAttribute("FsAutoComplete")>]
[<assembly: AssemblyDescriptionAttribute("A command line tool for interfacing with FSharp.Compiler.Service over a pipe.")>]
[<assembly: AssemblyVersionAttribute("0.30.2")>]
[<assembly: AssemblyFileVersionAttribute("0.30.2")>]
[<assembly: AssemblyVersionAttribute("0.31.0")>]
[<assembly: AssemblyFileVersionAttribute("0.31.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsAutoComplete"
let [<Literal>] AssemblyProduct = "FsAutoComplete"
let [<Literal>] AssemblyDescription = "A command line tool for interfacing with FSharp.Compiler.Service over a pipe."
let [<Literal>] AssemblyVersion = "0.30.2"
let [<Literal>] AssemblyFileVersion = "0.30.2"
let [<Literal>] AssemblyVersion = "0.31.0"
let [<Literal>] AssemblyFileVersion = "0.31.0"

0 comments on commit 13b96ee

Please sign in to comment.