Skip to content

Commit

Permalink
Merge pull request #367 from TestCentric/release-1.0-beta3
Browse files Browse the repository at this point in the history
Release 1.0 beta3
  • Loading branch information
CharliePoole authored Jul 14, 2019
2 parents b1d0455 + db27762 commit 8afd724
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
29 changes: 28 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
TestCentric Runner for NUnit 1.0.0-Beta2 - May 30, 2019
TestCentric Runner for NUnit 1.0.0-Beta3 - July 14, 2019

General

This is the third 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.13 of the Experimental GUI is included.
* Added command-line options --process, --domain, --inprocess, --x86 and --agents.

Issues Resolved

* 139 FIXED: Stop Button to interrupt infinite loop
* 287 Assembly or project full name not shown
* 337 FIXED: Stopping a long running test from TestCentric gui does not stop right away
* 350 FIXED: Installed Extensions fields not cleared
* 352 Incorporate NUnit Engine as a subtree
* 357 Review whether File menu settings should be saved
* 358 FIXED: Assemblies Running in Parallel (Regardless of Settings)
* 361 FIXED: Process Model setting includes Single rather than Separate
* 364 FIXED: Experimental GUI: Proper icons are not displayed for warnings and failures

TestCentric Runner for NUnit 1.0.0-Beta2 - May 30, 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-beta2");
var packageVersion = Argument("packageVersion", "1.0-beta3");

//////////////////////////////////////////////////////////////////////
// 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-Beta2")]
[assembly: AssemblyInformationalVersion("1.0.0-Beta3")]
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.11.0.0")]
[assembly: AssemblyFileVersion("0.11.0.0")]
[assembly: AssemblyVersion("0.13.0.0")]
[assembly: AssemblyFileVersion("0.13.0.0")]

0 comments on commit 8afd724

Please sign in to comment.