Skip to content

Commit

Permalink
Merge pull request #351 from TestCentric/release-1.0-beta2
Browse files Browse the repository at this point in the history
Preparing for beta2 release
  • Loading branch information
CharliePoole authored May 30, 2019
2 parents 6636d9b + 0ddad44 commit 28bebb7
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
28 changes: 27 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
TestCentric Runner for NUnit 1.0.0-Beta - April 13, 2019
TestCentric Runner for NUnit 1.0.0-Beta2 - May 30, 2019

General

This is the second 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.12 of the Experimental GUI is included with support for user-defined icons
and immediate text output display.

Issues Resolved
* 5 Add online docs for the GUI
* 229 Experimental GUI: Multiple and user-defined tree icons
* 236 Experimental GUI: missing test output
* 326 Update CONTRIBUTING.md
* 328 FIXED: Reloading loads the assembly multiple times
* 327 Document how TestCentric GUI is versioned
* 333 FIXED: InvalidOperationException is thrown from RunStarting event handler
* 336 FIXED: In TestCentric gui, Selected Categories are cleared on Reload
* 345 Show names of settings in Text Output settings dialog

TestCentric Runner for NUnit 1.0.0-Beta - April 13, 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-beta");
var packageVersion = Argument("packageVersion", "1.0-beta2");

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

0 comments on commit 28bebb7

Please sign in to comment.