Коммит
d34e4e728a
31
CHANGES.txt
31
CHANGES.txt
|
@ -1,22 +1,43 @@
|
|||
NUnit V2 Framework Driver Extension 3.8 - October 15, 2019
|
||||
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:
|
||||
* 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.
|
||||
|
|
|
@ -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...");
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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.
|
||||
// ***********************************************************************
|
||||
|
||||
|
|
|
@ -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.
|
||||
// ***********************************************************************
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
|
|||
[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 @@ using System.Runtime.InteropServices;
|
|||
[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")]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче