From 4adecf4c3ebcb5ec27938ed90d3a58999b136b50 Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Sun, 13 Oct 2019 23:29:13 -0700 Subject: [PATCH 1/3] Update version to 3.8 --- build.cake | 2 +- src/extension/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.cake b/build.cake index 67d25ba..1c5d66f 100644 --- a/build.cake +++ b/build.cake @@ -14,7 +14,7 @@ var GITHUB_SITE = "https://github.com/nunit/nunit-v2-framework-driver"; var WIKI_PAGE = "https://github.com/nunit/docs/wiki/Console-Command-Line"; var NUGET_ID = "NUnit.Extension.NUnitV2Driver"; var CHOCO_ID = "nunit-extension-nunit-v2-driver"; -var VERSION = "3.7.1"; +var VERSION = "3.8.0"; // Metadata used in the nuget and chocolatey packages var TITLE = "NUnit 3 - NUnit V2 Framework Driver Extension"; diff --git a/src/extension/Properties/AssemblyInfo.cs b/src/extension/Properties/AssemblyInfo.cs index 9d5ce92..3f855d2 100644 --- a/src/extension/Properties/AssemblyInfo.cs +++ b/src/extension/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ [assembly: Guid("d9dde4fb-09c0-4a9a-924e-8691bf839092")] // Version of the extension -[assembly: AssemblyVersion("3.7.1.0")] -[assembly: AssemblyFileVersion("3.7.1.0")] +[assembly: AssemblyVersion("3.8.0.0")] +[assembly: AssemblyFileVersion("3.8.0.0")] From 4a808504b279f89ba518d4640848ad1d696acbb2 Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Sun, 13 Oct 2019 23:36:58 -0700 Subject: [PATCH 2/3] Update CHANGES file --- CHANGES.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 08309f4..d0d364e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,10 @@ +NUnit V2 Framework Driver Extension 3.8 - 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 Issues Resolved: From 903b328d21c6201e58f7193ddd222b1022e87330 Mon Sep 17 00:00:00 2001 From: Charlie Poole Date: Sat, 19 Oct 2019 20:55:19 -0700 Subject: [PATCH 3/3] Update copyright dates --- LICENSE.txt | 2 +- build.cake | 4 ++-- nunit.v2.driver.sln | 9 +++++++-- src/extension/NUnit2FrameworkDriver.cs | 2 +- src/extension/Properties/AssemblyInfo.cs | 2 +- src/extension/TestEventAdapter.cs | 2 +- src/extension/XmlExtensions.cs | 2 +- 7 files changed, 14 insertions(+), 9 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index fc6cd32..e8d4575 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2017 Charlie Poole +Copyright (c) 2014-2019 Charlie Poole Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/build.cake b/build.cake index 1c5d66f..27c6d0b 100644 --- a/build.cake +++ b/build.cake @@ -20,9 +20,9 @@ var VERSION = "3.8.0"; var TITLE = "NUnit 3 - NUnit V2 Framework Driver Extension"; var AUTHORS = new [] { "Charlie Poole" }; var OWNERS = new [] { "Charlie Poole" }; -var DESCRIPTION = "This extension allows NUnit to load and run tests compiled against earlier versions of the NUnit framework. Versions 2.0 through 2.6.4 are supported."; +var 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."; var SUMMARY = "NUnit Engine extension allowing execution of tests using NUnit 2.x."; -var COPYRIGHT = "Copyright (c) 2017 Charlie Poole"; +var COPYRIGHT = "Copyright (c) 2014-2019 Charlie Poole"; var RELEASE_NOTES = new [] { "See https://raw.githubusercontent.com/nunit/nunit-v2-framework-driver/master/CHANGES.txt" }; var TAGS = new [] { "nunit", "test", "testing", "tdd", "runner" }; diff --git a/nunit.v2.driver.sln b/nunit.v2.driver.sln index 12097c2..5c477c2 100644 --- a/nunit.v2.driver.sln +++ b/nunit.v2.driver.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.852 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.v2.driver", "src\extension\nunit.v2.driver.csproj", "{379058E2-E834-4CC7-B5CD-AC8DFCF82AEA}" EndProject @@ -13,6 +13,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution build.cmd = build.cmd build.ps1 = build.ps1 build.sh = build.sh + CHANGES.txt = CHANGES.txt + LICENSE.txt = LICENSE.txt nunit.v2.driver.nuspec = nunit.v2.driver.nuspec README.md = README.md EndProjectSection @@ -43,4 +45,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E3CE9F5F-EF5F-48B1-B211-42FFCB09BC65} + EndGlobalSection EndGlobal diff --git a/src/extension/NUnit2FrameworkDriver.cs b/src/extension/NUnit2FrameworkDriver.cs index 166aa8e..2efb5d3 100644 --- a/src/extension/NUnit2FrameworkDriver.cs +++ b/src/extension/NUnit2FrameworkDriver.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014 Charlie Poole +// Copyright (c) 2014-2019 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 3f855d2..26f7449 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 © 2017")] +[assembly: AssemblyCopyright("Copyright © 2014-2019")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/extension/TestEventAdapter.cs b/src/extension/TestEventAdapter.cs index 5f83a2f..7a83249 100644 --- a/src/extension/TestEventAdapter.cs +++ b/src/extension/TestEventAdapter.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2015 Charlie Poole +// Copyright (c) 2015-2019 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 24edd23..29d5c84 100644 --- a/src/extension/XmlExtensions.cs +++ b/src/extension/XmlExtensions.cs @@ -1,5 +1,5 @@ // *********************************************************************** -// Copyright (c) 2014 Charlie Poole +// Copyright (c) 2014-2019 Charlie Poole // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the