diff --git a/CHANGELOG.md b/CHANGELOG.md index 90cff421e..84ec431f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ## [Unreleased] +## [2.4.0] - 2016-02-26 + ### Added - Support for the test result format of VsTest.Console.exe ([#280](https://github.com/picklesdoc/pickles/issues/280)) (by [@dirkrombauts](https://github.com/dirkrombauts)). diff --git a/build.bat b/build.bat index bde61e9e6..1b55ff544 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=2.3.0" +set "picklesVersion=2.4.0" cls diff --git a/src/Pickles/VersionInfo.cs b/src/Pickles/VersionInfo.cs index 616f5ca22..9e7f83383 100644 --- a/src/Pickles/VersionInfo.cs +++ b/src/Pickles/VersionInfo.cs @@ -8,10 +8,10 @@ [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyVersionAttribute("2.3.0")] -[assembly: AssemblyFileVersionAttribute("2.3.0")] +[assembly: AssemblyVersionAttribute("2.4.0")] +[assembly: AssemblyFileVersionAttribute("2.4.0")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "2.3.0"; + internal const string Version = "2.4.0"; } }