Skip to content
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Jan 11, 2018
1 parent 55fcc98 commit a7fff6b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.2.0 - 2018-01-11
* Add FAKE into build group instead Main group
* Add list projects by folder command
* Add checking validity of renamed files

### 2.1.0 - 2017-10-26
* Handle call without and command
* Fix add above/below
Expand Down
8 changes: 4 additions & 4 deletions src/Forge.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Forge.Core")>]
[<assembly: AssemblyProductAttribute("Forge")>]
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
[<assembly: AssemblyVersionAttribute("2.1.0")>]
[<assembly: AssemblyFileVersionAttribute("2.1.0")>]
[<assembly: AssemblyVersionAttribute("2.2.0")>]
[<assembly: AssemblyFileVersionAttribute("2.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Forge.Core"
let [<Literal>] AssemblyProduct = "Forge"
let [<Literal>] AssemblyDescription = "Forge is a build tool that provides tasks for creating, compiling, and testing F# projects"
let [<Literal>] AssemblyVersion = "2.1.0"
let [<Literal>] AssemblyFileVersion = "2.1.0"
let [<Literal>] AssemblyVersion = "2.2.0"
let [<Literal>] AssemblyFileVersion = "2.2.0"
8 changes: 4 additions & 4 deletions src/Forge.ProjectSystem/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Forge.ProjectSystem")>]
[<assembly: AssemblyProductAttribute("Forge")>]
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
[<assembly: AssemblyVersionAttribute("2.1.0")>]
[<assembly: AssemblyFileVersionAttribute("2.1.0")>]
[<assembly: AssemblyVersionAttribute("2.2.0")>]
[<assembly: AssemblyFileVersionAttribute("2.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Forge.ProjectSystem"
let [<Literal>] AssemblyProduct = "Forge"
let [<Literal>] AssemblyDescription = "Forge is a build tool that provides tasks for creating, compiling, and testing F# projects"
let [<Literal>] AssemblyVersion = "2.1.0"
let [<Literal>] AssemblyFileVersion = "2.1.0"
let [<Literal>] AssemblyVersion = "2.2.0"
let [<Literal>] AssemblyFileVersion = "2.2.0"
8 changes: 4 additions & 4 deletions src/Forge/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Forge")>]
[<assembly: AssemblyProductAttribute("Forge")>]
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
[<assembly: AssemblyVersionAttribute("2.1.0")>]
[<assembly: AssemblyFileVersionAttribute("2.1.0")>]
[<assembly: AssemblyVersionAttribute("2.2.0")>]
[<assembly: AssemblyFileVersionAttribute("2.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Forge"
let [<Literal>] AssemblyProduct = "Forge"
let [<Literal>] AssemblyDescription = "Forge is a build tool that provides tasks for creating, compiling, and testing F# projects"
let [<Literal>] AssemblyVersion = "2.1.0"
let [<Literal>] AssemblyFileVersion = "2.1.0"
let [<Literal>] AssemblyVersion = "2.2.0"
let [<Literal>] AssemblyFileVersion = "2.2.0"

0 comments on commit a7fff6b

Please sign in to comment.