Skip to content

Commit 08022ea

Browse files
authored
Merge pull request #466 from nunit/release-39-merge
Release 3.9 merge
2 parents 4ccf26f + 6aaf475 commit 08022ea

File tree

5 files changed

+41
-7
lines changed

5 files changed

+41
-7
lines changed

CHANGES.txt

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
NUnit 3.8 - January 27, 2018
1+
NUnit 3.9 - September 5, 2018
2+
3+
This release should stop the dreaded SocketException problem on shutdown. The
4+
console also no longer returns -5 when AppDomains fail to unload at the end of a
5+
test run. These fixes should make CI runs much more stable and predictible.
6+
7+
For developers working on the NUnit Console and Engine project, Visual Studio
8+
2017 update 5 or newer is now required to compile on the command line. This does
9+
not effect developers using NUnit or the NUnit Console, both of which support building
10+
and running your tests in any IDE and on any .NET Framework back to .NET 2.0.
11+
12+
Issues Resolved
13+
14+
* 103 The switch statement does not cover all values of the 'RuntimeType' enum: NetCF.
15+
* 218 Move Distribution back into the nunit-console project.
16+
* 253 Master Chocolatey issue
17+
* 255 SocketException thrown during console run
18+
* 312 CI failure: SocketException
19+
* 360 CommandLineOption --err does not write error input to ErrorFile
20+
* 367 nunit3-console loads nunit.framework with partial name
21+
* 370 Nunit.Console 3.8 - Socket Exception
22+
* 371 Remove -5 exit code on app domain unload failures
23+
* 394 Multi-targeted Engine Extensions
24+
* 399 Fix minor doccoment issues
25+
* 411 Make output received when providing user friendly messages unloading the domain more user friendly
26+
* 412 Extensions not dectected for version 3.9.0-dev-03997
27+
* 436 NUnitEngineException : Unable to acquire remote process agent
28+
* 446 Output CI version info to console
29+
* 448 Update vs-project-loader extension to 3.8.0
30+
* 450 Update NUnit.Extension.VSProjectLoader to 3.8.0
31+
* 456 NuGet Package : Add `repository` metadata.
32+
* 461 Use MSBuild /restore
33+
34+
NUnit 3.8 - January 27, 2018
235

336
This release includes several fixes when unloading AppDomains and better error reporting. The
437
aggregate NuGet packages also include updated versions of several extensions.

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bool IsDotNetCoreInstalled = false;
1414
// SET PACKAGE VERSION
1515
//////////////////////////////////////////////////////////////////////
1616

17-
var version = "3.9.0";
17+
var version = "3.10.0";
1818
var modifier = "";
1919

2020
var isAppveyor = BuildSystem.IsRunningOnAppVeyor;

src/NUnitConsole/ConsoleVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
using System.Reflection;
2525

2626
[assembly: AssemblyProduct("NUnit Console Runner")]
27-
[assembly: AssemblyVersion("3.9.0")]
28-
[assembly: AssemblyInformationalVersion("3.9.0")]
27+
[assembly: AssemblyVersion("3.10.0")]
28+
[assembly: AssemblyInformationalVersion("3.10.0")]

src/NUnitEngine/EngineApiVersion.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@
2525

2626
[assembly: AssemblyProduct("NUnit Engine API")]
2727
[assembly: AssemblyVersion("3.0.0.0")]
28-
[assembly: AssemblyInformationalVersion("3.9.0")]
28+
[assembly: AssemblyInformationalVersion("3.10.0")]
29+
[assembly: AssemblyFileVersion("3.10.0")]

src/NUnitEngine/EngineVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
using System.Reflection;
2525

2626
[assembly: AssemblyProduct("NUnit Engine")]
27-
[assembly: AssemblyVersion("3.9.0")]
28-
[assembly: AssemblyInformationalVersion("3.9.0")]
27+
[assembly: AssemblyVersion("3.10.0")]
28+
[assembly: AssemblyInformationalVersion("3.10.0")]

0 commit comments

Comments
 (0)