From f04ee57e5f95520498d346bc70c942942973001b Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Fri, 21 Dec 2018 20:44:36 +0100 Subject: [PATCH] Bumping version to 1.0.5 --- RELEASE_NOTES.md | 2 +- src/Client/ReleaseNotes.fs | 4 ++-- src/Server/Server.fs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c750ac1..73b6bd4 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release Notes -## 1.0.4 - 2018-12-21 +## 1.0.5 - 2018-12-21 * Christmas edition ## 0.16.25 - 2018-12-18 diff --git a/src/Client/ReleaseNotes.fs b/src/Client/ReleaseNotes.fs index 309436e..e39ee81 100644 --- a/src/Client/ReleaseNotes.fs +++ b/src/Client/ReleaseNotes.fs @@ -1,13 +1,13 @@ module internal ReleaseNotes -let Version = "1.0.4" +let Version = "1.0.5" let IsPrerelease = false let Notes = """ # Release Notes -## 1.0.4 - 2018-12-21 +## 1.0.5 - 2018-12-21 * Christmas edition ## 0.16.25 - 2018-12-18 diff --git a/src/Server/Server.fs b/src/Server/Server.fs index b284f5c..31ec19d 100644 --- a/src/Server/Server.fs +++ b/src/Server/Server.fs @@ -199,7 +199,7 @@ let youtubeEndpoint = pipeline { set_header "Content-Type" "application/json" plug (fun next ctx -> task { - let! _,urls = discoverYoutubeLink "https://www.youtube.com/watch?v=2zCtErDjP2U" + let! _,urls = discoverYoutubeLink "https://www.youtube.com/watch?v=DeTePthFfDY" let txt = sprintf "%A" urls return! setBodyFromString txt next ctx })