Skip to content

Commit d34e4e7

Browse files
authored
Merge pull request #50 from nunit/release-3.9.0
Release 3.9.0
2 parents e3fb132 + 1902a40 commit d34e4e7

File tree

11 files changed

+38
-17
lines changed

11 files changed

+38
-17
lines changed

CHANGES.txt

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,43 @@
1-
NUnit V2 Framework Driver Extension 3.8 - October 15, 2019
1+
NUnit V2 Framework Driver Extension 3.9.0 - September 28, 2021
2+
3+
Bugs
4+
5+
* 21 Explicitness of tests is ignored in the presence of a filter with adding multiple negated categories
6+
* 27 Exploring tests with filter returns all tests
7+
* 39 Name and Fullname are the same in V3 XML format
8+
9+
Build
10+
11+
* 36 Publish 'dev' builds on MyGet
12+
* 37 Run integration tests on packages
13+
* 40 Automate GitHub Release Process
14+
* 41 Change default branch from master to main
15+
* 42 Standardize build scripts for extensions
16+
* 45 Automate the GitHub release process
17+
18+
Documentation
19+
20+
* 33 Create a level of support statement
21+
22+
NUnit V2 Framework Driver Extension 3.8.0 - October 15, 2019
223

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

8-
NUnit V2 Framework Driver Extension 3.7 - August 10, 2017
29+
NUnit V2 Framework Driver Extension 3.7.0 - August 10, 2017
930

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

13-
NUnit V2 Framework Driver Extension 3.6 - January 10, 2017
34+
NUnit V2 Framework Driver Extension 3.6.0 - January 10, 2017
1435

1536
Issues Resolved:
1637
* 3 Change API reference to released version
1738
* 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
1839
* 7 Explicitness of tests is ignored in the presence of a negated filter
1940

20-
NUnit V2 Framework Driver Extension 3.5 - October 6, 2016
41+
NUnit V2 Framework Driver Extension 3.5.0 - October 6, 2016
2142

22-
The first independent release of the vs-project-loader extension.
43+
The first independent release of the extension.

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ Task("CreateDraftRelease")
321321
// for both the name of the draft release and the milestone,
322322
// i.e. release-2.0.0, release-2.0.0-beta2, etc.
323323
string milestone = parameters.BranchName.Substring(8);
324-
string releaseName = $"Visual Studio Project Loader Extension {milestone}";
324+
string releaseName = $"NUnit Vw Framework Driver Extension {milestone}";
325325

326326
Information($"Creating draft release...");
327327

cake/packaging.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ static readonly string[] AUTHORS = new[] { "Charlie Poole" };
77
static readonly string[] OWNERS = new[] { "Charlie Poole" };
88
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.";
99
const string SUMMARY = "NUnit Engine extension allowing execution of tests using NUnit 2.x.";
10-
const string COPYRIGHT = "Copyright (c) 2014-2019 Charlie Poole";
10+
const string COPYRIGHT = "Copyright (c) 2008-2021 Charlie Poole";
1111
static readonly string[] RELEASE_NOTES = new[] { "See https://raw.githubusercontent.com/nunit/nunit-v2-framework-driver/main/CHANGES.txt" };
1212
static readonly string[] TAGS = new[] { "nunit", "test", "testing", "tdd", "runner" };
1313
static readonly Uri PROJECT_URL = new Uri("http://nunit.org");

cake/test-reports.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) Charlie Poole and TestCentric GUI contributors.
2+
// Copyright (c) Charlie Poole and contributors.
33
// Licensed under the MIT License. See LICENSE.txt in root directory.
44
// ***********************************************************************
55

cake/test-results.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) Charlie Poole and TestCentric GUI contributors.
2+
// Copyright (c) Charlie Poole and contributors.
33
// Licensed under the MIT License. See LICENSE.txt in root directory.
44
// ***********************************************************************
55

src/extension/NUnit2FrameworkDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2019 Charlie Poole
2+
// Copyright (c) 2008-2021 Charlie Poole
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/extension/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("nunit.v2.driver")]
13-
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
13+
[assembly: AssemblyCopyright("Copyright © 2008-2021")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

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

2525
// Version of the extension
26-
[assembly: AssemblyVersion("3.8.0.0")]
27-
[assembly: AssemblyFileVersion("3.8.0.0")]
26+
[assembly: AssemblyVersion("3.9.0.0")]
27+
[assembly: AssemblyFileVersion("3.9.0.0")]

src/extension/TestEventAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2015-2019 Charlie Poole
2+
// Copyright (c) 2008-2021 Charlie Poole
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/extension/XmlExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2014-2019 Charlie Poole
2+
// Copyright (c) 2008-2021 Charlie Poole
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

src/nunit.v2.driver.tests/FilterConverterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***********************************************************************
2-
// Copyright (c) 2019 Charlie Poole
2+
// Copyright (c) 2019-2021 Charlie Poole
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining
55
// a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)