From 9a9653e3d41d087fd85424434eaedea747fd9b47 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Sat, 28 Jun 2014 03:19:21 +0200 Subject: [PATCH] Updated release notes and increased version number. --- ReleaseNotes.md | 8 ++++++++ src/SolutionInfo.cs | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) 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"; } }