Skip to content

Commit

Permalink
Merge pull request #32 from nunit/release-3.8
Browse files Browse the repository at this point in the history
Release 3.8 preparation
  • Loading branch information
CharliePoole authored Oct 20, 2019
2 parents 232ab47 + 903b328 commit 5799e06
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ 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";
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" };

Expand Down
9 changes: 7 additions & 2 deletions nunit.v2.driver.sln
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -43,4 +45,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E3CE9F5F-EF5F-48B1-B211-42FFCB09BC65}
EndGlobalSection
EndGlobal
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 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
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 © 2017")]
[assembly: AssemblyCopyright("Copyright © 2014-2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -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")]
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 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
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 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
Expand Down

0 comments on commit 5799e06

Please sign in to comment.