From 8cc7fc0b86fb4f0c62ca37783bdb21a2f05e8aeb Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 11 Dec 2014 16:54:20 +0100 Subject: [PATCH 1/5] Delete old release script --- release.cmd | 1 - 1 file changed, 1 deletion(-) delete mode 100644 release.cmd diff --git a/release.cmd b/release.cmd deleted file mode 100644 index 4d7117be9..000000000 --- a/release.cmd +++ /dev/null @@ -1 +0,0 @@ -tools\nant-0.85\binaries\nant -buildfile:project.build %1 %2 %3 %4 %5 From 52f0de525d15c090fd93abdd239ca001f88dcef8 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 11 Dec 2014 17:06:38 +0100 Subject: [PATCH 2/5] Add scripts for deploying to nuget and chocolatey --- DeployToChocolatey.cmd | 12 ++++++++++++ DeployToNuget.cmd | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 DeployToChocolatey.cmd create mode 100644 DeployToNuget.cmd diff --git a/DeployToChocolatey.cmd b/DeployToChocolatey.cmd new file mode 100644 index 000000000..cd567326e --- /dev/null +++ b/DeployToChocolatey.cmd @@ -0,0 +1,12 @@ +@ECHO OFF + +REM this script supposes you set the chocolatey API key by running this command: +REM NuGet SetApiKey -source https://chocolatey.org/ +REM Mind the trailing slash! + +cd .\deploy\chocolatey\ + +choco push pickles.%1.nupkg +choco push picklesui.%1.nupkg + +cd ..\..\ diff --git a/DeployToNuget.cmd b/DeployToNuget.cmd new file mode 100644 index 000000000..900162a32 --- /dev/null +++ b/DeployToNuget.cmd @@ -0,0 +1,12 @@ +@ECHO OFF + +REM this script supposes you set the nuget API key by running this command: +REM NuGet SetApiKey + +cd .\src\Pickles\packages\NuGet.CommandLine.*\tools + +nuget push ..\..\..\..\..\deploy\Pickles.%1.nupkg +nuget push ..\..\..\..\..\deploy\Pickles.CommandLine.%1.nupkg +nuget push ..\..\..\..\..\deploy\Pickles.MSBuild.%1.nupkg + +cd ..\..\..\..\..\ From 30ebf5e0d0043b39c67e93a351a1fdaf081b02be Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 11 Dec 2014 17:08:50 +0100 Subject: [PATCH 3/5] Set version number to 1.0.0 --- build.bat | 2 +- src/Pickles/VersionInfo.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.bat b/build.bat index f7b634223..6a92f18ea 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=0.20.0" +set "picklesVersion=1.0.0" cls diff --git a/src/Pickles/VersionInfo.cs b/src/Pickles/VersionInfo.cs index 66b4fe8e0..cf94fd864 100644 --- a/src/Pickles/VersionInfo.cs +++ b/src/Pickles/VersionInfo.cs @@ -8,10 +8,10 @@ [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyVersionAttribute("0.20.0")] -[assembly: AssemblyFileVersionAttribute("0.20.0")] +[assembly: AssemblyVersionAttribute("1.0.0")] +[assembly: AssemblyFileVersionAttribute("1.0.0")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.20.0"; + internal const string Version = "1.0.0"; } } From b83d48e4c9a69cfca2e57091cab819d17ee4c062 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 11 Dec 2014 17:09:10 +0100 Subject: [PATCH 4/5] Make build script nuget-version-independent --- build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bat b/build.bat index 6a92f18ea..405fca229 100644 --- a/build.bat +++ b/build.bat @@ -4,7 +4,7 @@ set "picklesVersion=1.0.0" cls -cd ".\src\Pickles\packages\NuGet.CommandLine.2.8.3\tools\" +cd ".\src\Pickles\packages\NuGet.CommandLine.*\tools\" ".\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "..\..\..\..\..\packages" "-ExcludeVersion" From c6b0389f44dbee41ec8d4d187add1a10db220667 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Thu, 11 Dec 2014 17:13:10 +0100 Subject: [PATCH 5/5] Update release notes --- ReleaseNotes.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index f79091e2a..0ca648283 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,15 @@ # Pickles Release Notes +## v1.0.0 - 2014-12-15 + +### Breaking Change + +- Support for the nAnt runner has been discontinued. nAnt users can migrate by using nAnt's capabilities to call the command line runner of Pickles. ([#179](https://github.com/picklesdoc/pickles/pull/179)) + +### Bug Fix + +- The checkmark/cross icon in the GUI client did not always show the cross icon when appropriate, and its state could be changed by the user. ([#177](https://github.com/picklesdoc/pickles/pull/177)) + ## v0.20.0 - 2014-12-10 ### Breaking Change