Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Feb 2, 2018
1 parent da1fe1d commit 38f1a37
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 0.3.0 - 02.02.2018
* Add toggle for forcing SSL
* Add toggle for forcing CORS
* Add helpers for JWT authentication

### 0.2.0 - 25.01.2018

* Initial version
Expand Down
8 changes: 4 additions & 4 deletions src/Saturn/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Saturn")>]
[<assembly: AssemblyProductAttribute("Saturn")>]
[<assembly: AssemblyDescriptionAttribute("Opinionated, web development framework for F# which implements the server-side, functional MVC pattern")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
[<assembly: AssemblyVersionAttribute("0.3.0")>]
[<assembly: AssemblyFileVersionAttribute("0.3.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Saturn"
let [<Literal>] AssemblyProduct = "Saturn"
let [<Literal>] AssemblyDescription = "Opinionated, web development framework for F# which implements the server-side, functional MVC pattern"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyFileVersion = "0.2.0"
let [<Literal>] AssemblyVersion = "0.3.0"
let [<Literal>] AssemblyFileVersion = "0.3.0"

0 comments on commit 38f1a37

Please sign in to comment.