Skip to content

Commit

Permalink
Merge pull request #373 from TestCentric/release-1.0-beta4
Browse files Browse the repository at this point in the history
Release 1.0 beta4
  • Loading branch information
CharliePoole authored Jul 17, 2019
2 parents 68f16ee + 6e607d5 commit cb82a25
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 7 deletions.
22 changes: 21 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
TestCentric Runner for NUnit 1.0.0-Beta3 - July 14, 2019
TestCentric Runner for NUnit 1.0.0-Beta4 - July 17, 2019

General

This is the fourth beta release of the TestCentric Runner for NUnit. While it is still beta,
it is feature-complete. Since the actual execution of tests is done by the NUnit engine
rather than the GUI itself, it's probably reasonable for developers to use this on the
desktop, provided their CI is based on a stable production-level NUnit runner, such as
the NUnit 3 Console Runner or the NUnit 3 VS adapter.

Features

* Version 0.14 of the Experimental GUI is included.

Issues Resolved

* 368 FIXED: Arguments to --process option for GUI don't match NUnit console.
* 369 Merge Options classes for two GUIs and move to common assembly.
* 370 FIXED: Beta3: unhandled .net exception

TestCentric Runner for NUnit 1.0.0-Beta3 - July 14, 2019

General

Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var packageVersion = Argument("packageVersion", "1.0-beta3");
var packageVersion = Argument("packageVersion", "1.0-beta4");

//////////////////////////////////////////////////////////////////////
// SET PACKAGE VERSION
Expand Down
2 changes: 1 addition & 1 deletion src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-Beta3")]
[assembly: AssemblyInformationalVersion("1.0.0-Beta4")]
4 changes: 2 additions & 2 deletions src/Experimental/experimental-exe/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
// Common version information for local developer builds.
// Should be set to the NEXT planned version between releases.
// For CI builds, this info will be updated by GitVersion.
[assembly: AssemblyVersion("0.12.0.0")]
[assembly: AssemblyFileVersion("0.12.0.0")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]
4 changes: 2 additions & 2 deletions src/Experimental/experimental-gui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
// Common version information for local developer builds.
// Should be set to the NEXT planned version between releases.
// For CI builds, this info will be updated by GitVersion.
[assembly: AssemblyVersion("0.13.0.0")]
[assembly: AssemblyFileVersion("0.13.0.0")]
[assembly: AssemblyVersion("0.14.0.0")]
[assembly: AssemblyFileVersion("0.14.0.0")]

0 comments on commit cb82a25

Please sign in to comment.