From bfcd454431c0c496eab0950bcfd271cacbc76b95 Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Tue, 28 Sep 2021 15:29:38 -0700 Subject: [PATCH 1/2] Update copyright dates and version numbers for release 3.9.0 --- CHANGES.txt | 12 +++++++----- cake/packaging.cake | 2 +- cake/test-reports.cake | 2 +- cake/test-results.cake | 2 +- src/extension/NUnit2FrameworkDriver.cs | 2 +- src/extension/Properties/AssemblyInfo.cs | 6 +++--- src/extension/TestEventAdapter.cs | 2 +- src/extension/XmlExtensions.cs | 2 +- src/nunit.v2.driver.tests/FilterConverterTests.cs | 2 +- .../NUnit2FrameworkDriverTests.cs | 2 +- 10 files changed, 18 insertions(+), 16 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index d0d364e..c830a01 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,22 +1,24 @@ -NUnit V2 Framework Driver Extension 3.8 - October 15, 2019 +NUnit V2 Framework Driver Extension 3.9.0 - September 28, 2021 + +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. diff --git a/cake/packaging.cake b/cake/packaging.cake index e7bb925..71501e0 100644 --- a/cake/packaging.cake +++ b/cake/packaging.cake @@ -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"); diff --git a/cake/test-reports.cake b/cake/test-reports.cake index b152d10..ac5f55d 100644 --- a/cake/test-reports.cake +++ b/cake/test-reports.cake @@ -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. // *********************************************************************** diff --git a/cake/test-results.cake b/cake/test-results.cake index d00df82..8e1d916 100644 --- a/cake/test-results.cake +++ b/cake/test-results.cake @@ -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. // *********************************************************************** diff --git a/src/extension/NUnit2FrameworkDriver.cs b/src/extension/NUnit2FrameworkDriver.cs index 937b84a..f694870 100644 --- a/src/extension/NUnit2FrameworkDriver.cs +++ b/src/extension/NUnit2FrameworkDriver.cs @@ -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 diff --git a/src/extension/Properties/AssemblyInfo.cs b/src/extension/Properties/AssemblyInfo.cs index 26f7449..328a5e5 100644 --- a/src/extension/Properties/AssemblyInfo.cs +++ b/src/extension/Properties/AssemblyInfo.cs @@ -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("")] @@ -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")] diff --git a/src/extension/TestEventAdapter.cs b/src/extension/TestEventAdapter.cs index 7a83249..9b9df24 100644 --- a/src/extension/TestEventAdapter.cs +++ b/src/extension/TestEventAdapter.cs @@ -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 diff --git a/src/extension/XmlExtensions.cs b/src/extension/XmlExtensions.cs index ff8411b..557a0f1 100644 --- a/src/extension/XmlExtensions.cs +++ b/src/extension/XmlExtensions.cs @@ -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 diff --git a/src/nunit.v2.driver.tests/FilterConverterTests.cs b/src/nunit.v2.driver.tests/FilterConverterTests.cs index f296969..c4e5e74 100644 --- a/src/nunit.v2.driver.tests/FilterConverterTests.cs +++ b/src/nunit.v2.driver.tests/FilterConverterTests.cs @@ -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 diff --git a/src/nunit.v2.driver.tests/NUnit2FrameworkDriverTests.cs b/src/nunit.v2.driver.tests/NUnit2FrameworkDriverTests.cs index f710d48..3fb84c2 100644 --- a/src/nunit.v2.driver.tests/NUnit2FrameworkDriverTests.cs +++ b/src/nunit.v2.driver.tests/NUnit2FrameworkDriverTests.cs @@ -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 From 1902a40c43a4f9fa643991b274ba3c7a38e88848 Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Tue, 28 Sep 2021 17:27:43 -0700 Subject: [PATCH 2/2] Update CHANGS.txt for release 3.9.0 --- CHANGES.txt | 19 +++++++++++++++++++ build.cake | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index c830a01..92b68c2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,24 @@ 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: diff --git a/build.cake b/build.cake index 123ebda..f3d877b 100644 --- a/build.cake +++ b/build.cake @@ -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...");