Skip to content

Commit

Permalink
Merge pull request #50 from nunit/release-3.9.0
Browse files Browse the repository at this point in the history
Release 3.9.0
  • Loading branch information
CharliePoole authored Sep 29, 2021
2 parents e3fb132 + 1902a40 commit d34e4e7
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 17 deletions.
31 changes: 26 additions & 5 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,43 @@
NUnit V2 Framework Driver Extension 3.8 - October 15, 2019
NUnit V2 Framework Driver Extension 3.9.0 - September 28, 2021

Bugs

* 21 Explicitness of tests is ignored in the presence of a filter with adding multiple negated categories
* 27 Exploring tests with filter returns all tests
* 39 Name and Fullname are the same in V3 XML format

Build

* 36 Publish 'dev' builds on MyGet
* 37 Run integration tests on packages
* 40 Automate GitHub Release Process
* 41 Change default branch from master to main
* 42 Standardize build scripts for extensions
* 45 Automate the GitHub release process

Documentation

* 33 Create a level of support statement

NUnit V2 Framework Driver Extension 3.8.0 - October 15, 2019

Issues Resolved:
* 15 Event Listener and Report output incorrect on nunit2 test runs
* 22 Use NUnit V2 Core package rather than hard coded 2.6.4 binaries
* 29 V2 Driver does not support id filters

NUnit V2 Framework Driver Extension 3.7 - August 10, 2017
NUnit V2 Framework Driver Extension 3.7.0 - August 10, 2017

Issues Resolved:
* 16 Integrate creation of chocolatey package into the build script

NUnit V2 Framework Driver Extension 3.6 - January 10, 2017
NUnit V2 Framework Driver Extension 3.6.0 - January 10, 2017

Issues Resolved:
* 3 Change API reference to released version
* 5 NUnit 3 console should produce xml events for ITestEventListener which contain unique id in the scope of all test agents for NUnit 2 tests
* 7 Explicitness of tests is ignored in the presence of a negated filter

NUnit V2 Framework Driver Extension 3.5 - October 6, 2016
NUnit V2 Framework Driver Extension 3.5.0 - October 6, 2016

The first independent release of the vs-project-loader extension.
The first independent release of the extension.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ Task("CreateDraftRelease")
// for both the name of the draft release and the milestone,
// i.e. release-2.0.0, release-2.0.0-beta2, etc.
string milestone = parameters.BranchName.Substring(8);
string releaseName = $"Visual Studio Project Loader Extension {milestone}";
string releaseName = $"NUnit Vw Framework Driver Extension {milestone}";
Information($"Creating draft release...");
Expand Down
2 changes: 1 addition & 1 deletion cake/packaging.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ static readonly string[] AUTHORS = new[] { "Charlie Poole" };
static readonly string[] OWNERS = new[] { "Charlie Poole" };
const string DESCRIPTION = "This extension allows NUnit to load and run tests compiled against earlier versions of the NUnit framework. Versions 2.0 through 2.7 are supported.";
const string SUMMARY = "NUnit Engine extension allowing execution of tests using NUnit 2.x.";
const string COPYRIGHT = "Copyright (c) 2014-2019 Charlie Poole";
const string COPYRIGHT = "Copyright (c) 2008-2021 Charlie Poole";
static readonly string[] RELEASE_NOTES = new[] { "See https://raw.githubusercontent.com/nunit/nunit-v2-framework-driver/main/CHANGES.txt" };
static readonly string[] TAGS = new[] { "nunit", "test", "testing", "tdd", "runner" };
static readonly Uri PROJECT_URL = new Uri("http://nunit.org");
Expand Down
2 changes: 1 addition & 1 deletion cake/test-reports.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) Charlie Poole and TestCentric GUI contributors.
// Copyright (c) Charlie Poole and contributors.
// Licensed under the MIT License. See LICENSE.txt in root directory.
// ***********************************************************************

Expand Down
2 changes: 1 addition & 1 deletion cake/test-results.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) Charlie Poole and TestCentric GUI contributors.
// Copyright (c) Charlie Poole and contributors.
// Licensed under the MIT License. See LICENSE.txt in root directory.
// ***********************************************************************

Expand Down
2 changes: 1 addition & 1 deletion src/extension/NUnit2FrameworkDriver.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2014-2019 Charlie Poole
// Copyright (c) 2008-2021 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down
6 changes: 3 additions & 3 deletions src/extension/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("nunit.v2.driver")]
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
[assembly: AssemblyCopyright("Copyright © 2008-2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -23,5 +23,5 @@
[assembly: Guid("d9dde4fb-09c0-4a9a-924e-8691bf839092")]

// Version of the extension
[assembly: AssemblyVersion("3.8.0.0")]
[assembly: AssemblyFileVersion("3.8.0.0")]
[assembly: AssemblyVersion("3.9.0.0")]
[assembly: AssemblyFileVersion("3.9.0.0")]
2 changes: 1 addition & 1 deletion src/extension/TestEventAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2015-2019 Charlie Poole
// Copyright (c) 2008-2021 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/extension/XmlExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2014-2019 Charlie Poole
// Copyright (c) 2008-2021 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/nunit.v2.driver.tests/FilterConverterTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2019 Charlie Poole
// Copyright (c) 2019-2021 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/nunit.v2.driver.tests/NUnit2FrameworkDriverTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************************
// Copyright (c) 2016 Charlie Poole
// Copyright (c) 2008-2021 Charlie Poole
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
Expand Down

0 comments on commit d34e4e7

Please sign in to comment.