Skip to content

Commit

Permalink
Bump version to 5.144.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Feb 26, 2018
1 parent 0152fd3 commit 7878f1e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### 5.144.0-alpha.1 - 2018-02-26
#### 5.144.0-alpha.2 - 2018-02-26
* Added support for credential managers - https://github.com/fsprojects/Paket/pull/3069

#### 5.143.0 - 2018-02-26
Expand Down
3 changes: 3 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ let buildMergedDir = buildDir @@ "merged"
let paketFile = buildMergedDir @@ "paket.exe"

Environment.CurrentDirectory <- __SOURCE_DIRECTORY__

System.Net.ServicePointManager.SecurityProtocol <- unbox 192 ||| unbox 768 ||| unbox 3072 ||| unbox 48

// Read additional information from the release notes document
let releaseNotesData =
File.ReadAllLines "RELEASE_NOTES.md"
Expand Down
4 changes: 2 additions & 2 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
[assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")]
[assembly: AssemblyVersionAttribute("5.144.0")]
[assembly: AssemblyFileVersionAttribute("5.144.0")]
[assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.1")]
[assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.2")]
namespace System {
internal static class AssemblyVersionInformation {
internal const System.String AssemblyTitle = "Paket.Bootstrapper";
internal const System.String AssemblyProduct = "Paket";
internal const System.String AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories.";
internal const System.String AssemblyVersion = "5.144.0";
internal const System.String AssemblyFileVersion = "5.144.0";
internal const System.String AssemblyInformationalVersion = "5.144.0-alpha.1";
internal const System.String AssemblyInformationalVersion = "5.144.0-alpha.2";
}
}
4 changes: 2 additions & 2 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open System.Reflection
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("5.144.0")>]
[<assembly: AssemblyFileVersionAttribute("5.144.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.1")>]
[<assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.2")>]
do ()

module internal AssemblyVersionInformation =
Expand All @@ -18,4 +18,4 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories."
let [<Literal>] AssemblyVersion = "5.144.0"
let [<Literal>] AssemblyFileVersion = "5.144.0"
let [<Literal>] AssemblyInformationalVersion = "5.144.0-alpha.1"
let [<Literal>] AssemblyInformationalVersion = "5.144.0-alpha.2"
4 changes: 2 additions & 2 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open System.Reflection
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("5.144.0")>]
[<assembly: AssemblyFileVersionAttribute("5.144.0")>]
[<assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.1")>]
[<assembly: AssemblyInformationalVersionAttribute("5.144.0-alpha.2")>]
do ()

module internal AssemblyVersionInformation =
Expand All @@ -18,4 +18,4 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyDescription = "A dependency manager for .NET with support for NuGet packages and git repositories."
let [<Literal>] AssemblyVersion = "5.144.0"
let [<Literal>] AssemblyFileVersion = "5.144.0"
let [<Literal>] AssemblyInformationalVersion = "5.144.0-alpha.1"
let [<Literal>] AssemblyInformationalVersion = "5.144.0-alpha.2"

0 comments on commit 7878f1e

Please sign in to comment.