Skip to content

Commit

Permalink
Preparing for 3.6.1 Hotfix Release
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed Mar 7, 2017
1 parent 082e342 commit 609400b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
NUnit 3.6 - January 14, 2017
NUnit 3.6.1 - March 6, 2017

Engine

* This hotfix release addresses a race condition in the Engine that caused
tests to intermittently fail.

Issues Resolved

* 168 Intermittent errors while running tests after updating to 3.6

NUnit 3.6 - January 14, 2017

Console Runner

Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var ErrorDetail = new List<string>();
// SET PACKAGE VERSION
//////////////////////////////////////////////////////////////////////

var version = "3.6.0";
var version = "3.6.1";
var modifier = "";

var isAppveyor = BuildSystem.IsRunningOnAppVeyor;
Expand Down
4 changes: 2 additions & 2 deletions src/NUnitConsole/ConsoleVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
//
// Current version for the NUnit Console
//
[assembly: AssemblyVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]
[assembly: AssemblyVersion("3.6.1.0")]
[assembly: AssemblyFileVersion("3.6.1.0")]
2 changes: 1 addition & 1 deletion src/NUnitEngine/EngineApiVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
// as new releases of the engine itself are created.
//
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.1.0")]
4 changes: 2 additions & 2 deletions src/NUnitEngine/EngineVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// Versioning for the NUnit Engine assemblies, with the exception
// of nunit.engine.api, which uses a separate version file.
//
[assembly: AssemblyVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]
[assembly: AssemblyVersion("3.6.1.0")]
[assembly: AssemblyFileVersion("3.6.1.0")]

0 comments on commit 609400b

Please sign in to comment.