Skip to content

Commit 5a307a1

Browse files
Bump version to 0.7.2
1 parent be1f88f commit 5a307a1

File tree

7 files changed

+201
-182
lines changed

7 files changed

+201
-182
lines changed

RELEASE_NOTES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.7.1 - 14.07.2018
1+
### 0.7.2 - 14.07.2018
22
* Use earlier FSharp.Core version (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
33

44
### 0.7.0 - 13.07.2018

build.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Target "Pack" (fun _ ->
9292
OutputPath = buildDir;
9393
Version = release.NugetVersion
9494
ReleaseNotes = String.concat "\n" release.Notes
95-
MinimumFromLockFile = true
95+
MinimumFromLockFile = false
9696
}
9797
)
9898
)

paket.dependencies

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
source https://www.nuget.org/api/v2
22

33

4-
nuget FSharp.Core 4.2.3
5-
nuget Microsoft.AspNetCore
6-
nuget Microsoft.AspNetCore.Session
7-
nuget Microsoft.AspNetCore.ResponseCompression
8-
nuget Microsoft.AspNetCore.StaticFiles
9-
nuget Microsoft.Extensions.Caching.Memory
10-
nuget Microsoft.AspNetCore.Rewrite
11-
nuget Microsoft.AspNetCore.Cors
12-
nuget Microsoft.AspNetCore.Authentication.JwtBearer
13-
nuget Microsoft.AspNetCore.Authentication.Cookies
14-
nuget Microsoft.AspNetCore.Authentication.Google
15-
nuget Microsoft.AspNetCore.Authentication.OAuth
16-
nuget Microsoft.AspNetCore.Authorization
17-
nuget Microsoft.AspNetCore.Antiforgery
18-
nuget Microsoft.AspNetCore.Server.HttpSys
4+
nuget FSharp.Core >= 4.2.3
5+
nuget Microsoft.AspNetCore >= 2.1
6+
nuget Microsoft.AspNetCore.Session >= 2.1
7+
nuget Microsoft.AspNetCore.ResponseCompression >= 2.1
8+
nuget Microsoft.AspNetCore.StaticFiles >= 2.1
9+
nuget Microsoft.Extensions.Caching.Memory >= 2.1
10+
nuget Microsoft.AspNetCore.Rewrite >= 2.1
11+
nuget Microsoft.AspNetCore.Cors >= 2.1
12+
nuget Microsoft.AspNetCore.Authentication.JwtBearer >= 2.1
13+
nuget Microsoft.AspNetCore.Authentication.Cookies >= 2.1
14+
nuget Microsoft.AspNetCore.Authentication.Google >= 2.1
15+
nuget Microsoft.AspNetCore.Authentication.OAuth >= 2.1
16+
nuget Microsoft.AspNetCore.Authorization >= 2.1
17+
nuget Microsoft.AspNetCore.Antiforgery >= 2.1
18+
nuget Microsoft.AspNetCore.Server.HttpSys >= 2.1
1919

20-
nuget Giraffe
20+
nuget Giraffe >= 1.1
2121

2222
group Build
2323
source https://www.nuget.org/api/v2

paket.lock

+171-152
Large diffs are not rendered by default.

src/Saturn.Extensions.Authorization/AssemblyInfo.fs

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Saturn.Extensions.Authorization")>]
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.7.1")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.7.1")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.2")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.2")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.Extensions.Authorization"
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.7.1"
17-
let [<Literal>] AssemblyFileVersion = "0.7.1"
16+
let [<Literal>] AssemblyVersion = "0.7.2"
17+
let [<Literal>] AssemblyFileVersion = "0.7.2"

src/Saturn.HttpSys/AssemblyInfo.fs

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("Saturn.HttpSys")>]
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.7.1")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.7.1")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.2")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.2")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.HttpSys"
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.7.1"
17-
let [<Literal>] AssemblyFileVersion = "0.7.1"
16+
let [<Literal>] AssemblyVersion = "0.7.2"
17+
let [<Literal>] AssemblyFileVersion = "0.7.2"

src/Saturn/AssemblyInfo.fs

+4-4
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.7.1")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.7.1")>]
8+
[<assembly: AssemblyVersionAttribute("0.7.2")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.7.2")>]
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.7.1"
17-
let [<Literal>] AssemblyFileVersion = "0.7.1"
16+
let [<Literal>] AssemblyVersion = "0.7.2"
17+
let [<Literal>] AssemblyFileVersion = "0.7.2"

0 commit comments

Comments
 (0)