From 77f1fc30484ec6fb7937e7356375e1dd1dd85111 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Sat, 29 Nov 2014 17:24:42 +0100 Subject: [PATCH] Updated Chocolatey build. --- ReleaseNotes.md | 3 +++ build.cake | 2 +- src/Chocolatey/Cake.Bootstrapper.nuspec | 4 ++-- src/SolutionInfo.cs | 6 +++--- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 8d477d3..c0b89f6 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,2 +1,5 @@ +### New in 0.0.2 (Released 2014/11/29) +* Updated Chocolatey build to point to the correct install file. + ### New in 0.0.1 (Released 2014/11/29) * First version of the Cake bootstrapper. \ No newline at end of file diff --git a/build.cake b/build.cake index 6397992..39b254c 100644 --- a/build.cake +++ b/build.cake @@ -110,7 +110,7 @@ Task("Build-Chocolatey") .Does(() => { // Create chocolateyInstall.ps1 in chocolatey tools output. - var url = "https://github.com/cake-build/bootstrapper/releases/download/v" + version + "/Cake-Bootstrapper-v" + version + ".zip"; + var url = "https://github.com/cake-build/bootstrapper/releases/download/v" + version + "/Cake-Bootstrapper-v" + version + ".msi"; string text = File.ReadAllText("./src/Chocolatey/tools/chocolateyInstall.ps1"); text = text.Replace("%DOWNLOAD_URL%", url); File.WriteAllText(chocolateyToolsDirectory + "/chocolateyInstall.ps1", text); diff --git a/src/Chocolatey/Cake.Bootstrapper.nuspec b/src/Chocolatey/Cake.Bootstrapper.nuspec index 13536ed..f257701 100644 --- a/src/Chocolatey/Cake.Bootstrapper.nuspec +++ b/src/Chocolatey/Cake.Bootstrapper.nuspec @@ -1,8 +1,8 @@ - cake.bootstrapper - Cake.Bootstrapper + Cake.Bootstrapper + Cake Bootstrapper 0.0.0 Patrik Svensson Patrik Svensson diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs index afc0fcd..f004261 100644 --- a/src/SolutionInfo.cs +++ b/src/SolutionInfo.cs @@ -6,7 +6,7 @@ using System.Reflection; [assembly: AssemblyProduct("Cake")] -[assembly: AssemblyVersion("0.0.1")] -[assembly: AssemblyFileVersion("0.0.1")] -[assembly: AssemblyInformationalVersion("0.0.1")] +[assembly: AssemblyVersion("0.0.2")] +[assembly: AssemblyFileVersion("0.0.2")] +[assembly: AssemblyInformationalVersion("0.0.2")] [assembly: AssemblyCopyright("Copyright (c) Patrik Svensson 2014")]