diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f788469adc..8f1cfdd64f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 3.36.3 - 13.03.2017 +* USABILITY: Support TLS > 1.0 - https://github.com/fsprojects/Paket/issues/2174 + #### 3.36.2 - 13.03.2017 * BUGFIX: Allow to add package when sources are splitted - https://github.com/fsprojects/Paket.VisualStudio/issues/137 diff --git a/src/Paket.Core/Utils.fs b/src/Paket.Core/Utils.fs index 2609452e95..09bb643fec 100644 --- a/src/Paket.Core/Utils.fs +++ b/src/Paket.Core/Utils.fs @@ -17,6 +17,7 @@ open Paket.Domain open System.Net.Http #endif +ServicePointManager.SecurityProtocol <- SecurityProtocolType.Tls ||| SecurityProtocolType.Tls11 ||| SecurityProtocolType.Tls12 ||| SecurityProtocolType.Ssl3 /// Adds quotes around the string /// [omit]