File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed
Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 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 ) )
Original file line number Diff line number Diff 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 " ) >]
1010do ()
1111
1212module 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 "
Original file line number Diff line number Diff 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 " ) >]
1010do ()
1111
1212module 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 "
You can’t perform that action at this time.
0 commit comments