Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Mar 2, 2020
1 parent 24253a9 commit 01883b1
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.11.0 - 02.03.2020
* Add a port argument to the watch command (by [@toburger](https://github.com/toburger)
* Collect and propogate loader errors (by [@jbeeko](https://github.com/jbeeko)
* Add MultipleFiles as possible generator output (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak)

### 0.10.0 - 20.02.2020
* Update to .NET Core 3.0
* Adds tools manifest .config/dotnet-tools.json
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.10.0")>]
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
[<assembly: AssemblyVersionAttribute("0.11.0")>]
[<assembly: AssemblyFileVersionAttribute("0.11.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.10.0"
let [<Literal>] AssemblyFileVersion = "0.10.0"
let [<Literal>] AssemblyVersion = "0.11.0"
let [<Literal>] AssemblyFileVersion = "0.11.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.10.0")>]
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
[<assembly: AssemblyVersionAttribute("0.11.0")>]
[<assembly: AssemblyFileVersionAttribute("0.11.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.10.0"
let [<Literal>] AssemblyFileVersion = "0.10.0"
let [<Literal>] AssemblyVersion = "0.11.0"
let [<Literal>] AssemblyFileVersion = "0.11.0"

0 comments on commit 01883b1

Please sign in to comment.