Skip to content

Commit 38f1a37

Browse files
Bump version to 0.3.0
1 parent da1fe1d commit 38f1a37

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.3.0 - 02.02.2018
2+
* Add toggle for forcing SSL
3+
* Add toggle for forcing CORS
4+
* Add helpers for JWT authentication
5+
16
### 0.2.0 - 25.01.2018
27

38
* Initial version

src/Saturn/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
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.2.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.3.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.3.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.2.0"
17-
let [<Literal>] AssemblyFileVersion = "0.2.0"
16+
let [<Literal>] AssemblyVersion = "0.3.0"
17+
let [<Literal>] AssemblyFileVersion = "0.3.0"

0 commit comments

Comments
 (0)