Skip to content

Commit 01883b1

Browse files
Bump version to 0.11.0
1 parent 24253a9 commit 01883b1

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.11.0 - 02.03.2020
2+
* Add a port argument to the watch command (by [@toburger](https://github.com/toburger)
3+
* Collect and propogate loader errors (by [@jbeeko](https://github.com/jbeeko)
4+
* Add MultipleFiles as possible generator output (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak)
5+
16
### 0.10.0 - 20.02.2020
27
* Update to .NET Core 3.0
38
* Adds tools manifest .config/dotnet-tools.json

src/Fornax.Core/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Fornax.Core")>]
66
[<assembly: AssemblyProductAttribute("Fornax")>]
77
[<assembly: AssemblyDescriptionAttribute("Fornax is a static site generator using type safe F# DSL to define page layouts")>]
8-
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.11.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Fornax.Core"
1414
let [<Literal>] AssemblyProduct = "Fornax"
1515
let [<Literal>] AssemblyDescription = "Fornax is a static site generator using type safe F# DSL to define page layouts"
16-
let [<Literal>] AssemblyVersion = "0.10.0"
17-
let [<Literal>] AssemblyFileVersion = "0.10.0"
16+
let [<Literal>] AssemblyVersion = "0.11.0"
17+
let [<Literal>] AssemblyFileVersion = "0.11.0"

src/Fornax/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Fornax")>]
66
[<assembly: AssemblyProductAttribute("Fornax")>]
77
[<assembly: AssemblyDescriptionAttribute("Fornax is a static site generator using type safe F# DSL to define page layouts")>]
8-
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.11.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Fornax"
1414
let [<Literal>] AssemblyProduct = "Fornax"
1515
let [<Literal>] AssemblyDescription = "Fornax is a static site generator using type safe F# DSL to define page layouts"
16-
let [<Literal>] AssemblyVersion = "0.10.0"
17-
let [<Literal>] AssemblyFileVersion = "0.10.0"
16+
let [<Literal>] AssemblyVersion = "0.11.0"
17+
let [<Literal>] AssemblyFileVersion = "0.11.0"

0 commit comments

Comments
 (0)