Skip to content

Commit ee91e7c

Browse files
Bump version to 0.10.0
1 parent 7657829 commit ee91e7c

File tree

9 files changed

+36
-29
lines changed

9 files changed

+36
-29
lines changed

.paket/Paket.Restore.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
</PropertyGroup>
117117

118118
<PropertyGroup Condition=" '$(MSBuildSupportsHashing)' == 'true' And '$(CacheFilesExist)' == 'true' ">
119-
<!-- If the restire file doesn't exist we need to restore, otherwise only if hashes don't match -->
119+
<!-- If the restore file doesn't exist we need to restore, otherwise only if hashes don't match -->
120120
<PaketRestoreRequired>true</PaketRestoreRequired>
121121
<PaketRestoreRequired Condition=" '$(PaketRestoreLockFileHash)' == '$(ProjectsRestoredHash)' ">false</PaketRestoreRequired>
122122
<PaketRestoreRequired Condition=" '$(PaketRestoreLockFileHash)' == '' ">true</PaketRestoreRequired>

RELEASE_NOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 0.10.0 - 17.10.2019
2+
* add OpenId Saturn extension (by [@gfritz](https://github.com/gfritz))
3+
* updated Giraffe to version 4 (by [@brase](https://github.com/brase))
4+
* fix for signature of tryMatchInput (by [@brase](https://github.com/brase))
5+
* renames AddAuthorization to AddAuthorizationCore (by [@brase](https://github.com/brase))
6+
* Add more constraints for package dependencies (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
7+
18
### 0.9.0 - 26.07.2019
29
* Change `use_config` to accept `IConfiguration -> 'a` (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))
310
* Case Insensitive support (`case_insensitive`) (by [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak))

src/Saturn.AzureFunctions/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.AzureFunctions")>]
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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.AzureFunctions"
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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.0"

src/Saturn.Extensions.Authorization/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.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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.0"

src/Saturn.Extensions.HttpSys/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.Extensions.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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
1010
do ()
1111

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

src/Saturn.Extensions.OpenIdConnect/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.Extensions.OpenIdConnect")>]
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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.Extensions.OpenIdConnect"
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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.0"

src/Saturn.Extensions.Turbolinks/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.Extensions.Turbolinks")>]
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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.Extensions.Turbolinks"
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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.0"

src/Saturn.Extensions.gRPC/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.Extensions.gRPC")>]
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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "Saturn.Extensions.gRPC"
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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.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.9.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.0")>]
8+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.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.9.0"
17-
let [<Literal>] AssemblyFileVersion = "0.9.0"
16+
let [<Literal>] AssemblyVersion = "0.10.0"
17+
let [<Literal>] AssemblyFileVersion = "0.10.0"

0 commit comments

Comments
 (0)