Skip to content

Commit 5799e06

Browse files
authored
Merge pull request #32 from nunit/release-3.8
Release 3.8 preparation
2 parents 232ab47 + 903b328 commit 5799e06

File tree

8 files changed

+24
-12
lines changed

8 files changed

+24
-12
lines changed

CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
NUnit V2 Framework Driver Extension 3.8 - October 15, 2019
2+
3+
Issues Resolved:
4+
* 15 Event Listener and Report output incorrect on nunit2 test runs
5+
* 22 Use NUnit V2 Core package rather than hard coded 2.6.4 binaries
6+
* 29 V2 Driver does not support id filters
7+
18
NUnit V2 Framework Driver Extension 3.7 - August 10, 2017
29

310
Issues Resolved:

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017 Charlie Poole
1+
Copyright (c) 2014-2019 Charlie Poole
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

build.cake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ var GITHUB_SITE = "https://github.com/nunit/nunit-v2-framework-driver";
1414
var WIKI_PAGE = "https://github.com/nunit/docs/wiki/Console-Command-Line";
1515
var NUGET_ID = "NUnit.Extension.NUnitV2Driver";
1616
var CHOCO_ID = "nunit-extension-nunit-v2-driver";
17-
var VERSION = "3.7.1";
17+
var VERSION = "3.8.0";
1818

1919
// Metadata used in the nuget and chocolatey packages
2020
var TITLE = "NUnit 3 - NUnit V2 Framework Driver Extension";
2121
var AUTHORS = new [] { "Charlie Poole" };
2222
var OWNERS = new [] { "Charlie Poole" };
23-
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.";
23+
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.";
2424
var SUMMARY = "NUnit Engine extension allowing execution of tests using NUnit 2.x.";
25-
var COPYRIGHT = "Copyright (c) 2017 Charlie Poole";
25+
var COPYRIGHT = "Copyright (c) 2014-2019 Charlie Poole";
2626
var RELEASE_NOTES = new [] { "See https://raw.githubusercontent.com/nunit/nunit-v2-framework-driver/master/CHANGES.txt" };
2727
var TAGS = new [] { "nunit", "test", "testing", "tdd", "runner" };
2828

nunit.v2.driver.sln

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.852
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nunit.v2.driver", "src\extension\nunit.v2.driver.csproj", "{379058E2-E834-4CC7-B5CD-AC8DFCF82AEA}"
77
EndProject
@@ -13,6 +13,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1313
build.cmd = build.cmd
1414
build.ps1 = build.ps1
1515
build.sh = build.sh
16+
CHANGES.txt = CHANGES.txt
17+
LICENSE.txt = LICENSE.txt
1618
nunit.v2.driver.nuspec = nunit.v2.driver.nuspec
1719
README.md = README.md
1820
EndProjectSection
@@ -43,4 +45,7 @@ Global
4345
GlobalSection(SolutionProperties) = preSolution
4446
HideSolutionNode = FALSE
4547
EndGlobalSection
48+
GlobalSection(ExtensibilityGlobals) = postSolution
49+
SolutionGuid = {E3CE9F5F-EF5F-48B1-B211-42FFCB09BC65}
50+
EndGlobalSection
4651
EndGlobal

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 Charlie Poole
2+
// Copyright (c) 2014-2019 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 © 2017")]
13+
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
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.7.1.0")]
27-
[assembly: AssemblyFileVersion("3.7.1.0")]
26+
[assembly: AssemblyVersion("3.8.0.0")]
27+
[assembly: AssemblyFileVersion("3.8.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 Charlie Poole
2+
// Copyright (c) 2015-2019 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 Charlie Poole
2+
// Copyright (c) 2014-2019 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)