Skip to content

Commit 2c7bd17

Browse files
Bump version to 0.7.0
1 parent 1ff605e commit 2c7bd17

File tree

4 files changed

+59
-4
lines changed

4 files changed

+59
-4
lines changed

RELEASE_NOTES.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
### 0.7.0 - 13.07.2018
2+
* Fix GitHub OAuth (by [@rmunn](https://github.com/rmunn))
3+
* Rename `scope` to `router` (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
4+
* Fix `jsonToClaimMap` in GitHub OAuth (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
5+
* Remove ContentRoot call from `use_static` (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
6+
* Fix `site.map` generation if no routes were detected (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
7+
* Add generic `response` helper (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
8+
* Handle generic output type in controller actions (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
9+
* Removes patch request method from `Update` into a new action called `Patch` (by [@NinoFloris](https://github.com/NinoFloris))
10+
* Adds HttpSys project and sample (by [@ChrSteinert](https://github.com/ChrSteinert)))
11+
* Add Google OAuth (by [@rmunn](https://github.com/rmunn))
12+
* Move OAuth authorization with 3rd party services to extensions library (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
13+
* Add operations for customizing serialization (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
14+
* New `except` function taking actions to remove from the complete set of actions (by [@NinoFloris](https://github.com/NinoFloris))
15+
* Handle possible `except [All]` silliness (by [@rmunn](https://github.com/rmunn))
16+
* Make `version` in `controller` CE a string (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
17+
* Ensure cookies are enabled only once (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
18+
* Add `use_router` to application CE. Mark `router` as obsolete. (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
19+
* Support custom MIME types (by [@Nhowka](https://github.com/Nhowka))
20+
* Fix model loading (`fetchModel`, `loadModel` and `getModel` functions) (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
21+
122
### 0.6.0 - 03.07.2018
223
* Implement CSRF token protection using `Microsoft.AspNetCore.Antiforgery` (by @baronfel)
324
* Await before adding result to `Items.["RequestModel"]` (by @NinoFloris)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Auto-Generated by FAKE; do not edit
2+
namespace System
3+
open System.Reflection
4+
5+
[<assembly: AssemblyTitleAttribute("Saturn.Extensions.Authorization")>]
6+
[<assembly: AssemblyProductAttribute("Saturn")>]
7+
[<assembly: AssemblyDescriptionAttribute("Opinionated, web development framework for F# which implements the server-side, functional MVC pattern")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.0")>]
10+
do ()
11+
12+
module internal AssemblyVersionInformation =
13+
let [<Literal>] AssemblyTitle = "Saturn.Extensions.Authorization"
14+
let [<Literal>] AssemblyProduct = "Saturn"
15+
let [<Literal>] AssemblyDescription = "Opinionated, web development framework for F# which implements the server-side, functional MVC pattern"
16+
let [<Literal>] AssemblyVersion = "0.7.0"
17+
let [<Literal>] AssemblyFileVersion = "0.7.0"

src/Saturn.HttpSys/AssemblyInfo.fs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Auto-Generated by FAKE; do not edit
2+
namespace System
3+
open System.Reflection
4+
5+
[<assembly: AssemblyTitleAttribute("Saturn.HttpSys")>]
6+
[<assembly: AssemblyProductAttribute("Saturn")>]
7+
[<assembly: AssemblyDescriptionAttribute("Opinionated, web development framework for F# which implements the server-side, functional MVC pattern")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.0")>]
10+
do ()
11+
12+
module internal AssemblyVersionInformation =
13+
let [<Literal>] AssemblyTitle = "Saturn.HttpSys"
14+
let [<Literal>] AssemblyProduct = "Saturn"
15+
let [<Literal>] AssemblyDescription = "Opinionated, web development framework for F# which implements the server-side, functional MVC pattern"
16+
let [<Literal>] AssemblyVersion = "0.7.0"
17+
let [<Literal>] AssemblyFileVersion = "0.7.0"

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.6.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.6.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.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.6.0"
17-
let [<Literal>] AssemblyFileVersion = "0.6.0"
16+
let [<Literal>] AssemblyVersion = "0.7.0"
17+
let [<Literal>] AssemblyFileVersion = "0.7.0"

0 commit comments

Comments
 (0)