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 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Nov 26, 2016
1 parent cf54a89 commit 2607ee2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.2.0 - 2016-11-26
* Add aliases
* Fix `new file` when wrong project name given.

### 1.1.3 - 2016-11-11
* Add `FSharpTargetsPath` to Project System

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 @@ -4,10 +4,10 @@ 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.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.1.3"
let [<Literal>] InformationalVersion = "1.1.3"
let [<Literal>] Version = "1.2.0"
let [<Literal>] InformationalVersion = "1.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 @@ -4,10 +4,10 @@ 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.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.1.3"
let [<Literal>] InformationalVersion = "1.1.3"
let [<Literal>] Version = "1.2.0"
let [<Literal>] InformationalVersion = "1.2.0"
8 changes: 4 additions & 4 deletions src/Forge/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ 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.1.3")>]
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
[<assembly: AssemblyVersionAttribute("1.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.1.3"
let [<Literal>] InformationalVersion = "1.1.3"
let [<Literal>] Version = "1.2.0"
let [<Literal>] InformationalVersion = "1.2.0"

0 comments on commit 2607ee2

Please sign in to comment.