Skip to content

Commit 969aab3

Browse files
Bump version to 0.2.0
1 parent a37c360 commit 969aab3

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

RELEASE_NOTES.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
### 0.0.13 - 25.01.2018
1+
### 0.2.0 - 25.01.2018
22

3-
* Initial version
3+
* Initial version
4+
* Implemented `pipeline` abstraction
5+
* Implemented `scope` abstraction
6+
* Implemented `controller` abstraction
7+
* Implemented `application` abstraction
8+
* Implemented set of helpers for controllers
9+
* Implemented set of helpers for generating links following controller conventions
10+
* Implemented CORS handler

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.0.13")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.0.13")>]
8+
[<assembly: AssemblyVersionAttribute("0.2.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.2.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.0.13"
17-
let [<Literal>] AssemblyFileVersion = "0.0.13"
16+
let [<Literal>] AssemblyVersion = "0.2.0"
17+
let [<Literal>] AssemblyFileVersion = "0.2.0"

0 commit comments

Comments
 (0)