Skip to content

Commit fc2c8cb

Browse files
committedMay 22, 2018
Bump version to 0.5.0
1 parent b1affea commit fc2c8cb

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed
 

‎RELEASE_NOTES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### 0.5.0 - 22.05.2018
2+
* Authorization helper (by @Nhowka)
3+
* Add forwardf
4+
* Generate documentation XML file (by @alfonsogarciacaro)
5+
* Fixed Controller DELETE to prevent NRE (by @rusanov-vladimir)
6+
* Update Application.fs - `use_static` changes (by @isaacabraham)
7+
* expose IWebHostBuilder from application CE (by @mexx)
8+
* Fix bug with `delete` routing (by @WalternativE)
9+
* Allow for creation of controller without typed actions (by @jeremyabbott)
10+
* Implementation of site map generator
11+
* Fix `set_body` overload
12+
113
### 0.4.3 - 27.02.2018
214
* Update to Giraffe 1.1
315
* Add new renderXml to render XmlNode based templates (by @mtnrbq)

‎src/Saturn/AssemblyInfo.fs

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Saturn")>]
66
[<assembly: AssemblyProductAttribute("Saturn")>]
77
[<assembly: AssemblyDescriptionAttribute("Opinionated, web development framework for F# which implements the server-side, functional MVC pattern")>]
8-
[<assembly: AssemblyVersionAttribute("0.4.3")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.4.3")>]
8+
[<assembly: AssemblyVersionAttribute("0.5.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.5.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn"
1414
let [<Literal>] AssemblyProduct = "Saturn"
1515
let [<Literal>] AssemblyDescription = "Opinionated, web development framework for F# which implements the server-side, functional MVC pattern"
16-
let [<Literal>] AssemblyVersion = "0.4.3"
17-
let [<Literal>] AssemblyFileVersion = "0.4.3"
16+
let [<Literal>] AssemblyVersion = "0.5.0"
17+
let [<Literal>] AssemblyFileVersion = "0.5.0"

0 commit comments

Comments
 (0)