Skip to content

Commit

Permalink
Merge pull request #181 from dirkrombauts/PrepareFor1.0
Browse files Browse the repository at this point in the history
Prepare for1.0
  • Loading branch information
dirkrombauts committed Dec 12, 2014
2 parents 246f112 + c6b0389 commit c305f3e
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 6 deletions.
12 changes: 12 additions & 0 deletions DeployToChocolatey.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@ECHO OFF

REM this script supposes you set the chocolatey API key by running this command:
REM NuGet SetApiKey <your key here> -source https://chocolatey.org/
REM Mind the trailing slash!

cd .\deploy\chocolatey\

choco push pickles.%1.nupkg
choco push picklesui.%1.nupkg

cd ..\..\
12 changes: 12 additions & 0 deletions DeployToNuget.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@ECHO OFF

REM this script supposes you set the nuget API key by running this command:
REM NuGet SetApiKey <your key here>

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 ..\..\..\..\..\
10 changes: 10 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
1 change: 0 additions & 1 deletion release.cmd

This file was deleted.

6 changes: 3 additions & 3 deletions src/Pickles/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}

0 comments on commit c305f3e

Please sign in to comment.