From f2f8c9a26a99ae113aa1c20aa1e035d1003f1658 Mon Sep 17 00:00:00 2001 From: kailwallin Date: Tue, 8 Oct 2019 20:08:43 -0400 Subject: [PATCH 1/4] Update README.md Fixed typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e2591b8..6cfc3297 100644 --- a/README.md +++ b/README.md @@ -312,7 +312,7 @@ https://ci.appveyor.com/nuget/giraffe If you add this source to your NuGet CLI or project settings then you can pull unofficial NuGet packages for quick feature testing or urgent hot fixes. -**Please be aware that unofficial builds have not gone through the scrunity of offical releases and their usage is on your own risk.** +**Please be aware that unofficial builds have not gone through the scrutiny of official releases and their usage is on your own risk.** ## Blog posts From e259af52b960598cdbe250412616922eb00fb669 Mon Sep 17 00:00:00 2001 From: Stuart Date: Thu, 26 Dec 2019 23:13:02 +0000 Subject: [PATCH 2/4] Tidy up references Co-authored-by: isaacabraham --- src/Giraffe/Giraffe.fsproj | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Giraffe/Giraffe.fsproj b/src/Giraffe/Giraffe.fsproj index cc94f746..761f7349 100644 --- a/src/Giraffe/Giraffe.fsproj +++ b/src/Giraffe/Giraffe.fsproj @@ -56,15 +56,12 @@ - - - - - + + From 0e811cf4000b272de2522a99bbea60027b670ef6 Mon Sep 17 00:00:00 2001 From: Stuart Lang Date: Fri, 27 Dec 2019 09:29:06 +0000 Subject: [PATCH 3/4] Fix sample code syntax --- DOCUMENTATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 56437cdd..4cd7ec85 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -1025,7 +1025,7 @@ Please be aware that such a `routex` can create a conflict and unexpected behavi let webApp = choose [ routex "/foo(/*)" >=> text "Bar" - routef "/foo/%s/%s/%s" (fun s1, s2, s3 -> text (sprintf "%s%s%s" s1 s2 s3)) + routef "/foo/%s/%s/%s" (fun (s1, s2, s3) -> text (sprintf "%s%s%s" s1 s2 s3)) // If none of the routes matched then return a 404 RequestErrors.NOT_FOUND "Not Found" From 915af0fc1f6d57ca9acfe4f1adfebe1cc25acacc Mon Sep 17 00:00:00 2001 From: Dustin Moris Gorski Date: Sun, 9 Feb 2020 12:27:05 +0000 Subject: [PATCH 4/4] Upped version to 4.1.0 --- src/Giraffe/Giraffe.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Giraffe/Giraffe.fsproj b/src/Giraffe/Giraffe.fsproj index 761f7349..80a59f42 100644 --- a/src/Giraffe/Giraffe.fsproj +++ b/src/Giraffe/Giraffe.fsproj @@ -2,7 +2,7 @@ Giraffe - 4.0.1 + 4.1.0 A native functional ASP.NET Core web framework for F# developers. Copyright 2018 Dustin Moris Gorski Dustin Moris Gorski and contributors