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 24, 2014
1 parent 1c9ff16 commit d2180d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### New in 0.1.8 (Released 2014/06/25)
* Added NuGet restore support.
* Task names are no longer case sensitive.
* Bug fix for non quoted MSBuild solution argument.
* Added custom collections for file and directory paths.

### New in 0.1.7 (Released 2014/06/21)
* Renamed method Run to RunTarget.
* Various fixes and improvements.
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.7")]
[assembly: AssemblyFileVersionAttribute("0.1.7")]
[assembly: AssemblyInformationalVersionAttribute("0.1.7")]
[assembly: AssemblyVersionAttribute("0.1.8")]
[assembly: AssemblyFileVersionAttribute("0.1.8")]
[assembly: AssemblyInformationalVersionAttribute("0.1.8")]
[assembly: AssemblyCopyrightAttribute("Copyright (c) Patrik Svensson 2014")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.1.7";
internal const string Version = "0.1.8";
}
}

0 comments on commit d2180d1

Please sign in to comment.