Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof-Cieslak committed Jan 28, 2018
1 parent a37c360 commit 969aab3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
11 changes: 9 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.0.13 - 25.01.2018
### 0.2.0 - 25.01.2018

* Initial version
* Initial version
* Implemented `pipeline` abstraction
* Implemented `scope` abstraction
* Implemented `controller` abstraction
* Implemented `application` abstraction
* Implemented set of helpers for controllers
* Implemented set of helpers for generating links following controller conventions
* Implemented CORS handler
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.0.13")>]
[<assembly: AssemblyFileVersionAttribute("0.0.13")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyFileVersionAttribute("0.2.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.0.13"
let [<Literal>] AssemblyFileVersion = "0.0.13"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyFileVersion = "0.2.0"

0 comments on commit 969aab3

Please sign in to comment.