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.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
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.10 .0" ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 0.10 .0" ) >]
8+ [<assembly: AssemblyVersionAttribute( " 0.11 .0" ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 0.11 .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.10 .0"
17- let [<Literal>] AssemblyFileVersion = " 0.10 .0"
16+ let [<Literal>] AssemblyVersion = " 0.11 .0"
17+ let [<Literal>] AssemblyFileVersion = " 0.11 .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.10 .0" ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 0.10 .0" ) >]
8+ [<assembly: AssemblyVersionAttribute( " 0.11 .0" ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 0.11 .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.10 .0"
17- let [<Literal>] AssemblyFileVersion = " 0.10 .0"
16+ let [<Literal>] AssemblyVersion = " 0.11 .0"
17+ let [<Literal>] AssemblyFileVersion = " 0.11 .0"
You can’t perform that action at this time.
0 commit comments