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.0.0-Andromeda
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Jul 1, 2017
1 parent 577aadc commit 7f9c1a3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 2.0.0-Andromeda - 2017-07-01
* **This is not backward compatible change**
* Update ProjectSystem to support SDK based project files
* Update templates to use SDK based project files
* Move templates to https://github.com/fsharp-editing/forge-templates
* Update generated FAKE script
* Infrastracture changes

### 1.4.2 - 2017-06-03
* Add support for `FORGE_TEMPLATE_DIR` environment variable
* Fix error when adding a file to a project with no files
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("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
[<assembly: AssemblyVersionAttribute("2.0.0")>]
[<assembly: AssemblyFileVersionAttribute("2.0.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 = "1.4.2"
let [<Literal>] AssemblyFileVersion = "1.4.2"
let [<Literal>] AssemblyVersion = "2.0.0"
let [<Literal>] AssemblyFileVersion = "2.0.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("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
[<assembly: AssemblyVersionAttribute("2.0.0")>]
[<assembly: AssemblyFileVersionAttribute("2.0.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 = "1.4.2"
let [<Literal>] AssemblyFileVersion = "1.4.2"
let [<Literal>] AssemblyVersion = "2.0.0"
let [<Literal>] AssemblyFileVersion = "2.0.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("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
[<assembly: AssemblyVersionAttribute("2.0.0")>]
[<assembly: AssemblyFileVersionAttribute("2.0.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 = "1.4.2"
let [<Literal>] AssemblyFileVersion = "1.4.2"
let [<Literal>] AssemblyVersion = "2.0.0"
let [<Literal>] AssemblyFileVersion = "2.0.0"

0 comments on commit 7f9c1a3

Please sign in to comment.