diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 05b42e0e3..8ef01a2a2 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -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. diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs index 514ae6c00..e6a58cbf5 100644 --- a/src/SolutionInfo.cs +++ b/src/SolutionInfo.cs @@ -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"; } }