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 ..\..\..\..\..\ 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 diff --git a/build.bat b/build.bat index f7b634223..405fca229 100644 --- a/build.bat +++ b/build.bat @@ -1,10 +1,10 @@ @echo off -set "picklesVersion=0.20.0" +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" 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 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"; } }