Skip to content

Commit 8b88c3f

Browse files
Bump version to 0.4.0
1 parent 3fc74a8 commit 8b88c3f

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

RELEASE_NOTES.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
### 0.4.0 - 16.02.2018
2+
* Implement controller versioning
3+
* Add suport for embedding controllers
4+
* Add plugs per action to controller
5+
* Add application helper for enabling IIS integration
6+
* Refactor authentication
7+
* Add cookies auth helpers
8+
* Add keyword for custom service configuration step
9+
* Add error handler to controller
10+
* Add helper for configuring logging
11+
* Add application helpers for OAuth and GitHub OAuth
12+
* Update to Giraffe 1.0
13+
* Add AutoOpens to most modules
14+
115
### 0.3.1 - 03.02.2018
216
* Fix JWT authorization
317
* Set content root in `use_static`

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.3.1")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.3.1")>]
8+
[<assembly: AssemblyVersionAttribute("0.4.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.4.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.3.1"
17-
let [<Literal>] AssemblyFileVersion = "0.3.1"
16+
let [<Literal>] AssemblyVersion = "0.4.0"
17+
let [<Literal>] AssemblyFileVersion = "0.4.0"

0 commit comments

Comments
 (0)