Skip to content

Commit

Permalink
Merge pull request #477 from TestCentric/release-1.2
Browse files Browse the repository at this point in the history
Release 1.2
  • Loading branch information
CharliePoole authored Dec 17, 2019
2 parents 8416aba + 41aefd2 commit 6433506
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 11 deletions.
50 changes: 49 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,52 @@
TestCentric Runner for NUnit 1.1.0 - November 9, 2019
TestCentric Runner for NUnit 1.2.0 - December 17, 2019

This release is primarily marked by the elimination of our
dependency on the NUnit Engine in preparation for moving
forward with features that require engine changes.

GUI

* Inprocess test execution has been deprecated

Experimental GUI

* The GUI font may be changed from the View menu

* One or more files may be added to those open

* Rerun on Change has been implemented

Test Model

Engine

* We now use the TestCentric Engine, Version 0.1, replacing the NUnit Engine.
The new engine is based on the NUnit 3.11 engine, with modifications.

* Engine recognizes and runs assemblies that target .NET Framework 4.6 and up.

* Engine now recognizes .NET Core assemblies and gives an error message
if the user attempts to open one.

* The RecentFilesService is no longer available.

Issues Resolved

* 215 Experimental GUI: Allow setting the gui font
* 217 Experimental GUI: Add files to those already open
* 233 Experimental GUI: Rerun on Change
* 426 Switch to use of separate TestCentric Engine build
* 445 Better error message when attempting to load .NET Core assemblies
* 447 FIXED: Engine will not recognize .NET Framework versions beyond 4.5
* 449 FIXED: GUI window doesn't retain size between runs
* 454 Deprecate in-process execution
* 455 Remove RecentFilesService from engine
* 456 Rename engine to testcentric engine
* 461 Convert all projects to use Package References
* 470 Remove deprecated "Single" option for ProcessModel
* 473 Establish Initial Version for TestCentric engine

TestCentric Runner for NUnit 1.1.0 - November 9, 2019

General

Expand Down
4 changes: 2 additions & 2 deletions src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyInformationalVersion("1.1.0")]
[assembly: AssemblyVersion("1.2.0")]
[assembly: AssemblyInformationalVersion("1.2.0")]
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.15.1.0")]
[assembly: AssemblyFileVersion("0.15.1.0")]
[assembly: AssemblyVersion("0.17.0.0")]
[assembly: AssemblyFileVersion("0.17.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.16.0.0")]
[assembly: AssemblyFileVersion("0.16.0.0")]
[assembly: AssemblyVersion("0.17.0.0")]
[assembly: AssemblyFileVersion("0.17.0.0")]
6 changes: 3 additions & 3 deletions src/TestEngine/EngineVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

using System.Reflection;

[assembly: AssemblyProduct("NUnit Engine")]
[assembly: AssemblyVersion("3.11.0")]
[assembly: AssemblyInformationalVersion("3.11.0")]
[assembly: AssemblyProduct("TestCentric Engine")]
[assembly: AssemblyVersion("0.1.0")]
[assembly: AssemblyInformationalVersion("0.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace NUnit.Engine
/// </summary>
public static class TestEngineActivator
{
internal static readonly Version DefaultMinimumVersion = new Version(3, 0);
internal static readonly Version DefaultMinimumVersion = new Version(0, 0);

private const string DefaultAssemblyName = "testcentric.engine.dll";
internal const string DefaultTypeName = "NUnit.Engine.TestEngine";
Expand Down

0 comments on commit 6433506

Please sign in to comment.