Skip to content

Commit

Permalink
Updated release notes and increased version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksvensson committed Jun 28, 2014
1 parent d44664e commit 9a9653e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### New in 0.1.9 (Releases 2014/06/28)
* Added AssemblyInfo creator.
* Zip: Fixed bug with relative paths.
* MSBuild: Added support for max CPU count.
* Added logging of process launch parameters.
* MSBuild: Fix for multiple property values & quotation.
* Fixed issue with cleaning deep dir structures.

### New in 0.1.8 (Released 2014/06/25)
* Added NuGet restore support.
* Task names are no longer case sensitive.
Expand Down
8 changes: 4 additions & 4 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using System.Reflection;

[assembly: AssemblyProductAttribute("Cake")]
[assembly: AssemblyVersionAttribute("0.1.8")]
[assembly: AssemblyFileVersionAttribute("0.1.8")]
[assembly: AssemblyInformationalVersionAttribute("0.1.8")]
[assembly: AssemblyVersionAttribute("0.1.9")]
[assembly: AssemblyFileVersionAttribute("0.1.9")]
[assembly: AssemblyInformationalVersionAttribute("0.1.9")]
[assembly: AssemblyCopyrightAttribute("Copyright (c) Patrik Svensson 2014")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.1.8";
internal const string Version = "0.1.9";
}
}

0 comments on commit 9a9653e

Please sign in to comment.