Skip to content

Commit

Permalink
Bump version to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Apr 14, 2020
1 parent feb6cfa commit 6713d31
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 0.12.0 - 14.04.2020
* WebSocket refresh uses excesive CPU (by [@robertpi](https://github.com/robertpi))
* Allow generate to return a byte array (by [@robertpi](https://github.com/robertpi))
* Refactor template (by [@robertpi](https://github.com/robertpi))

### 0.11.1 - 07.04.2020
* Fix for once generator running even if not found (by [@sasmithjr](https://github.com/sasmithjr))
* Use exceptions .ToString() when printing error (by [@robertpi](https://github.com/robertpi))
Expand Down
8 changes: 4 additions & 4 deletions src/Fornax.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Fornax.Core")>]
[<assembly: AssemblyProductAttribute("Fornax")>]
[<assembly: AssemblyDescriptionAttribute("Fornax is a static site generator using type safe F# DSL to define page layouts")>]
[<assembly: AssemblyVersionAttribute("0.11.2")>]
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
[<assembly: AssemblyVersionAttribute("0.12.0")>]
[<assembly: AssemblyFileVersionAttribute("0.12.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Fornax.Core"
let [<Literal>] AssemblyProduct = "Fornax"
let [<Literal>] AssemblyDescription = "Fornax is a static site generator using type safe F# DSL to define page layouts"
let [<Literal>] AssemblyVersion = "0.11.2"
let [<Literal>] AssemblyFileVersion = "0.11.2"
let [<Literal>] AssemblyVersion = "0.12.0"
let [<Literal>] AssemblyFileVersion = "0.12.0"
8 changes: 4 additions & 4 deletions src/Fornax/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Fornax")>]
[<assembly: AssemblyProductAttribute("Fornax")>]
[<assembly: AssemblyDescriptionAttribute("Fornax is a static site generator using type safe F# DSL to define page layouts")>]
[<assembly: AssemblyVersionAttribute("0.11.2")>]
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
[<assembly: AssemblyVersionAttribute("0.12.0")>]
[<assembly: AssemblyFileVersionAttribute("0.12.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Fornax"
let [<Literal>] AssemblyProduct = "Fornax"
let [<Literal>] AssemblyDescription = "Fornax is a static site generator using type safe F# DSL to define page layouts"
let [<Literal>] AssemblyVersion = "0.11.2"
let [<Literal>] AssemblyFileVersion = "0.11.2"
let [<Literal>] AssemblyVersion = "0.12.0"
let [<Literal>] AssemblyFileVersion = "0.12.0"

0 comments on commit 6713d31

Please sign in to comment.