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

Commit 2607ee2

Browse files
Bump version to 1.2.0
1 parent cf54a89 commit 2607ee2

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.2.0 - 2016-11-26
2+
* Add aliases
3+
* Fix `new file` when wrong project name given.
4+
15
### 1.1.3 - 2016-11-11
26
* Add `FSharpTargetsPath` to Project System
37

src/Forge.Core/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("Forge.Core")>]
55
[<assembly: AssemblyProductAttribute("Forge")>]
66
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
7-
[<assembly: AssemblyVersionAttribute("1.1.3")>]
8-
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
7+
[<assembly: AssemblyVersionAttribute("1.2.0")>]
8+
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.1.3"
13-
let [<Literal>] InformationalVersion = "1.1.3"
12+
let [<Literal>] Version = "1.2.0"
13+
let [<Literal>] InformationalVersion = "1.2.0"

src/Forge.ProjectSystem/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("Forge.ProjectSystem")>]
55
[<assembly: AssemblyProductAttribute("Forge")>]
66
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
7-
[<assembly: AssemblyVersionAttribute("1.1.3")>]
8-
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
7+
[<assembly: AssemblyVersionAttribute("1.2.0")>]
8+
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.1.3"
13-
let [<Literal>] InformationalVersion = "1.1.3"
12+
let [<Literal>] Version = "1.2.0"
13+
let [<Literal>] InformationalVersion = "1.2.0"

src/Forge/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("Forge")>]
55
[<assembly: AssemblyProductAttribute("Forge")>]
66
[<assembly: AssemblyDescriptionAttribute("Forge is a build tool that provides tasks for creating, compiling, and testing F# projects")>]
7-
[<assembly: AssemblyVersionAttribute("1.1.3")>]
8-
[<assembly: AssemblyFileVersionAttribute("1.1.3")>]
7+
[<assembly: AssemblyVersionAttribute("1.2.0")>]
8+
[<assembly: AssemblyFileVersionAttribute("1.2.0")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.1.3"
13-
let [<Literal>] InformationalVersion = "1.1.3"
12+
let [<Literal>] Version = "1.2.0"
13+
let [<Literal>] InformationalVersion = "1.2.0"

0 commit comments

Comments
 (0)