Skip to content

Commit 3aef418

Browse files
committed
Prepare for release 3.12.0-beta2
1 parent 584f0f7 commit 3aef418

17 files changed

+47
-15
lines changed

CHANGES.txt

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## NUnit Console & Engine 3.12 - January 17, 2021
2+
## .NET Core NUnit Console 3.12 Beta 2 - January 17, 2021
3+
4+
This release contains various improvements to running tests on .NET Core and Mono, and changes to
5+
extension loading logic to allow the Engine to better support extensions which target multiple platforms. There are additionally
6+
a number of fixes to issues that were identified with 3.12 Beta 1. Please also be aware that this will be the last version of
7+
the NUnit Engine to support .NET Standard 1.6.
8+
9+
The .NET Core Console remains in Beta due to some unresolved dependency loading and framework targeting issues - contributions to
10+
fix these issues would be very welcome!
11+
12+
Code contributions in this release were included from Charlie Poole, Chris Maddock, Christian Bay,
13+
Eberhard Beilharz, Ed Ball, Joseph Musser, Manohar Singh Mattias Cavigelli and Mikkel Nylander Bundgaard. Thank you to all
14+
those who contributed both in code, and otherwise.
15+
16+
Please note the below list includes only issues resolved between 3.12.0 Beta 1 and the final release. For those upgrading from 3.11.1
17+
or earlier, please also see the Beta release notes.
18+
19+
* 511 [Build] Improve detection of installed .NET Core Runtimes
20+
* 718 Eliminate use of Mono.Cecil
21+
* 810 Build NUnit.ConsoleRunner.NetCore as a .NET Core Tool.
22+
* 811 Use readonly modifier where possible
23+
* 818 Remove redundant dependency on Microsoft.DotNet.InternalAbstractions for platforms other than .NET Standard 1.6
24+
* 825 Revert change to increment nunit.engine.api assembly version
25+
* 829 Revert change made to IExtensionService in nunit.engine.api
26+
* 830 [CI] Test on .NET 5.0
27+
* 837 Fully remove Microsoft.Dotnet.InternalAbstractions dependency
28+
* 844 .NET Core console runner fails to load extensions when netfx and netstandard versions conflict
29+
* 847 [Build] Specify .NET 2.0 version of extensions for msi
30+
* 853 [Build] Allow local build to succeed even if all runtimes are not installed
31+
* 863 [Build] Use released version of NUnit Framework 3.13.0
32+
133
## NUnit Console & Engine 3.12 Beta 1 - August 1, 2020
234

335
This is the first beta release of the NUnit Console able to run .NET Core Tests.

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 Charlie Poole, Rob Prouse
1+
Copyright (c) 2021 Charlie Poole, Rob Prouse
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
var target = Argument("target", "Default");
1212
var configuration = Argument("configuration", "Release");
13-
var productVersion = Argument("productVersion", "3.12.0-beta1");
13+
var productVersion = Argument("productVersion", "3.12.0-beta2");
1414

1515
var ErrorDetail = new List<string>();
1616
var installedNetCoreRuntimes = GetInstalledNetCoreRuntimes();

choco/nunit-console-runner.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
<owners>Charlie Poole, Rob Prouse</owners>
2424
<language>en-US</language>
2525
<tags>nunit console runner test testing tdd</tags>
26-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
26+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
2727
</metadata>
2828
</package>

choco/nunit-console-with-extensions.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<owners>Charlie Poole, Rob Prouse</owners>
3333
<language>en-US</language>
3434
<tags>nunit console runner test testing tdd</tags>
35-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
35+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
3636
<dependencies>
3737
<group>
3838
<dependency id="nunit-console-runner" version="$version$" />

msi/resources/License.rtf

0 Bytes
Binary file not shown.

nuget/deprecated/nunit.engine.netstandard.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</description>
2121
<language>en-US</language>
2222
<tags>nunit test testing tdd runner</tags>
23-
<copyright>Copyright (C) 2020 Charlie Poole, Rob Prouse</copyright>
23+
<copyright>Copyright (C) 2021 Charlie Poole, Rob Prouse</copyright>
2424
<dependencies>
2525
<group>
2626
<dependency id="NUnit.Engine" version="$version$" />

nuget/deprecated/nunit.runners.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<releaseNotes>This release uses the latest version of the TeamCityEventListener extension.</releaseNotes>
3131
<language>en-US</language>
3232
<tags>nunit test testing tdd runner</tags>
33-
<copyright>Copyright (c) 2020 Charlie Poole</copyright>
33+
<copyright>Copyright (c) 2021 Charlie Poole</copyright>
3434
<dependencies>
3535
<group>
3636
<dependency id="NUnit.Console" version="$version$" />

nuget/engine/nunit.engine.api.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<releaseNotes></releaseNotes>
1818
<language>en-US</language>
1919
<tags>nunit test testing tdd engine</tags>
20-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
20+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
2121
<dependencies>
2222
<group targetFramework="net20" />
2323
<group targetFramework="netstandard1.6">

nuget/engine/nunit.engine.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<releaseNotes></releaseNotes>
1818
<language>en-US</language>
1919
<tags>nunit test testing tdd engine</tags>
20-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
20+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
2121
<dependencies>
2222
<group targetFramework="net20" />
2323
<group targetFramework="netstandard1.6">

nuget/runners/nunit.console-runner-with-extensions.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<releaseNotes></releaseNotes>
2929
<language>en-US</language>
3030
<tags>nunit test testing tdd runner</tags>
31-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
31+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
3232
<dependencies>
3333
<group>
3434
<dependency id="NUnit.ConsoleRunner" version="$version$" />

nuget/runners/nunit.console-runner.netcore.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<releaseNotes></releaseNotes>
2222
<language>en-US</language>
2323
<tags>nunit test testing tdd runner</tags>
24-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
24+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
2525
<packageTypes>
2626
<packageType name="DotnetTool" />
2727
</packageTypes>

nuget/runners/nunit.console-runner.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<releaseNotes></releaseNotes>
2222
<language>en-US</language>
2323
<tags>nunit test testing tdd runner</tags>
24-
<copyright>Copyright (c) 2020 Charlie Poole, Rob Prouse</copyright>
24+
<copyright>Copyright (c) 2021 Charlie Poole, Rob Prouse</copyright>
2525
</metadata>
2626
<files>
2727
<file src="LICENSE.txt" />

src/CommonAssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//
2929
[assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")]
3030
[assembly: AssemblyCompany("NUnit Software")]
31-
[assembly: AssemblyCopyright("Copyright (c) 2020 Charlie Poole, Rob Prouse")]
31+
[assembly: AssemblyCopyright("Copyright (c) 2021 Charlie Poole, Rob Prouse")]
3232

3333
#if DEBUG
3434
#if NET35

src/NUnitConsole/ConsoleVersion.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
[assembly: AssemblyProduct("NUnit Console Runner")]
2727
[assembly: AssemblyVersion("3.12.0")]
28-
[assembly: AssemblyInformationalVersion("3.12.0-beta1")]
28+
[assembly: AssemblyInformationalVersion("3.12.0-beta2")]

src/NUnitEngine/EngineApiVersion.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525

2626
[assembly: AssemblyProduct("NUnit Engine API")]
2727
[assembly: AssemblyVersion("3.0.0.0")]
28-
[assembly: AssemblyInformationalVersion("3.12.0")]
28+
[assembly: AssemblyInformationalVersion("3.12.0-beta2")]
2929
[assembly: AssemblyFileVersion("3.12.0")]

src/NUnitEngine/EngineVersion.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
[assembly: AssemblyProduct("NUnit Engine")]
2727
[assembly: AssemblyVersion("3.12.0")]
28-
[assembly: AssemblyInformationalVersion("3.12.0-beta1")]
28+
[assembly: AssemblyInformationalVersion("3.12.0-beta2")]

0 commit comments

Comments
 (0)