Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt committed Nov 10, 2016
1 parent 4bee743 commit 5b6c020
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##### 0.4.11 - November 10 2016

* Bug fixed by [@rexcfnghk](https://github.com/rexcfnghk): https://github.com/fsprojects/FSharpLint/issues/189

##### 0.4.10 - October 24 2016

* Updated FSharp.Compiler.Service
Expand All @@ -17,7 +21,7 @@

##### 0.4.6 - August 21 2016

* Bug fixed by @Krzysztof-Cieslak: https://github.com/fsprojects/FSharpLint/issues/172
* Bug fixed by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak): https://github.com/fsprojects/FSharpLint/issues/172

##### 0.4.5 - August 5 2016

Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let summaryApi = "FSharpLint Api (Lint tool for F#)."
// List of author names (for NuGet package)
let authors = [ "Matthew Mcveigh" ]

let version = "0.4.10"
let version = "0.4.11"

// File system information
// (<solutionFile>.sln is built during the building process)
Expand Down
8 changes: 4 additions & 4 deletions src/FSharpLint.Console/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharpLint")>]
[<assembly: AssemblyProductAttribute("FSharpLint")>]
[<assembly: AssemblyDescriptionAttribute("Lint tool for F#.")>]
[<assembly: AssemblyVersionAttribute("0.4.10")>]
[<assembly: AssemblyFileVersionAttribute("0.4.10")>]
[<assembly: AssemblyVersionAttribute("0.4.11")>]
[<assembly: AssemblyFileVersionAttribute("0.4.11")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharpLint"
let [<Literal>] AssemblyProduct = "FSharpLint"
let [<Literal>] AssemblyDescription = "Lint tool for F#."
let [<Literal>] AssemblyVersion = "0.4.10"
let [<Literal>] AssemblyFileVersion = "0.4.10"
let [<Literal>] AssemblyVersion = "0.4.11"
let [<Literal>] AssemblyFileVersion = "0.4.11"
8 changes: 4 additions & 4 deletions src/FSharpLint.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharpLint")>]
[<assembly: AssemblyProductAttribute("FSharpLint")>]
[<assembly: AssemblyDescriptionAttribute("Lint tool for F#.")>]
[<assembly: AssemblyVersionAttribute("0.4.10")>]
[<assembly: AssemblyFileVersionAttribute("0.4.10")>]
[<assembly: AssemblyVersionAttribute("0.4.11")>]
[<assembly: AssemblyFileVersionAttribute("0.4.11")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharpLint"
let [<Literal>] AssemblyProduct = "FSharpLint"
let [<Literal>] AssemblyDescription = "Lint tool for F#."
let [<Literal>] AssemblyVersion = "0.4.10"
let [<Literal>] AssemblyFileVersion = "0.4.10"
let [<Literal>] AssemblyVersion = "0.4.11"
let [<Literal>] AssemblyFileVersion = "0.4.11"
8 changes: 4 additions & 4 deletions src/FSharpLint.Fake/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharpLint")>]
[<assembly: AssemblyProductAttribute("FSharpLint")>]
[<assembly: AssemblyDescriptionAttribute("Lint tool for F#.")>]
[<assembly: AssemblyVersionAttribute("0.4.10")>]
[<assembly: AssemblyFileVersionAttribute("0.4.10")>]
[<assembly: AssemblyVersionAttribute("0.4.11")>]
[<assembly: AssemblyFileVersionAttribute("0.4.11")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharpLint"
let [<Literal>] AssemblyProduct = "FSharpLint"
let [<Literal>] AssemblyDescription = "Lint tool for F#."
let [<Literal>] AssemblyVersion = "0.4.10"
let [<Literal>] AssemblyFileVersion = "0.4.10"
let [<Literal>] AssemblyVersion = "0.4.11"
let [<Literal>] AssemblyFileVersion = "0.4.11"
8 changes: 4 additions & 4 deletions src/FSharpLint.MSBuild/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharpLint")>]
[<assembly: AssemblyProductAttribute("FSharpLint")>]
[<assembly: AssemblyDescriptionAttribute("Lint tool for F#.")>]
[<assembly: AssemblyVersionAttribute("0.4.10")>]
[<assembly: AssemblyFileVersionAttribute("0.4.10")>]
[<assembly: AssemblyVersionAttribute("0.4.11")>]
[<assembly: AssemblyFileVersionAttribute("0.4.11")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharpLint"
let [<Literal>] AssemblyProduct = "FSharpLint"
let [<Literal>] AssemblyDescription = "Lint tool for F#."
let [<Literal>] AssemblyVersion = "0.4.10"
let [<Literal>] AssemblyFileVersion = "0.4.10"
let [<Literal>] AssemblyVersion = "0.4.11"
let [<Literal>] AssemblyFileVersion = "0.4.11"

0 comments on commit 5b6c020

Please sign in to comment.