Skip to content

Commit 6713d31

Browse files
Bump version to 0.12.0
1 parent feb6cfa commit 6713d31

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.12.0 - 14.04.2020
2+
* WebSocket refresh uses excesive CPU (by [@robertpi](https://github.com/robertpi))
3+
* Allow generate to return a byte array (by [@robertpi](https://github.com/robertpi))
4+
* Refactor template (by [@robertpi](https://github.com/robertpi))
5+
16
### 0.11.1 - 07.04.2020
27
* Fix for once generator running even if not found (by [@sasmithjr](https://github.com/sasmithjr))
38
* Use exceptions .ToString() when printing error (by [@robertpi](https://github.com/robertpi))

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.11.2")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
8+
[<assembly: AssemblyVersionAttribute("0.12.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.12.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.11.2"
17-
let [<Literal>] AssemblyFileVersion = "0.11.2"
16+
let [<Literal>] AssemblyVersion = "0.12.0"
17+
let [<Literal>] AssemblyFileVersion = "0.12.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.11.2")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
8+
[<assembly: AssemblyVersionAttribute("0.12.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.12.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.11.2"
17-
let [<Literal>] AssemblyFileVersion = "0.11.2"
16+
let [<Literal>] AssemblyVersion = "0.12.0"
17+
let [<Literal>] AssemblyFileVersion = "0.12.0"

0 commit comments

Comments
 (0)