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