From 36f54730696790f917c1099db3bc774e224161a3 Mon Sep 17 00:00:00 2001 From: Chris Maddock Date: Tue, 14 Mar 2017 21:27:59 +0000 Subject: [PATCH] Prepare for 3.6.1 release --- CHANGES.md | 33 +++++++++++++++++++ LICENSE.txt | 2 +- build.cake | 2 +- nuget/nunit.runners.xamarin.nuspec | 4 ++- .../nunit.runner/Properties/AssemblyCommon.cs | 6 ++-- .../Properties/AssemblyInfoCommon.cs | 6 ++-- 6 files changed, 44 insertions(+), 9 deletions(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..19e0841 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,33 @@ +### NUnit Xamarin Runner 3.6.1 - March 14, 2017 + +This release includes new functionality to write and retrieve a TestResult xml file, via either a TCP port or specified file path. Additional changes are also included to improve intergration with CI systems. + +Windows Phone 8.1 support has been removed in this release. + +#### Issues Resolved + + * 17 Add a TcpListener + * 24 Create a Test Results file + * 51 Update to NUnit 3.5 + * 53 Update the README and docs + * 57 String resource Hello without id in Droid Runner project + * 59 Enable adding multiple assemblies to test + * 60 Added TestOption to change xml result file location + * 62 Get AppVeyor build working + * 64 Remove support for Win Phone 8.1 + * 65 Update library versions + * 66 Remove Text/UI references to NUnit 3.0 + * 70 Make the Icon Larger + * 74 Document framework version dependency of runner + * 84 Allow app to be terminated automatically after running the tests + * 85 Update to NUnit 3.6.1 + * 86 Include UWP test runner in CI + * 91 Added a null check in the TestOptions get-method + +### NUnit Xamarin Runner 3.0.1 - December 3, 2015 + +This release updates the test runner to use the new 3.0.1 NUnit Framework which fixes issues with Async tests on Windows 10 UWP. + +### NUnit Xamarin Runner 3.0.0 - November 18, 2015 + +This is the first release of the NUnit Xamarin Runners supporting Android, iOS, Windows Phone 8.1 and Windows 10 Universal Apps. \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt index f437520..fc6cd32 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2014 Charlie Poole +Copyright (c) 2017 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 diff --git a/build.cake b/build.cake index 386eda1..e784fc6 100644 --- a/build.cake +++ b/build.cake @@ -12,7 +12,7 @@ var configuration = Argument("configuration", "Release"); var isLocal = BuildSystem.IsLocalBuild; var isRunningOnAppVeyor = AppVeyor.IsRunningOnAppVeyor; -var version = "3.0.1"; +var version = "3.6.1"; var packageModifier = configuration == "Debug" ? "-dbg" : ""; // Directories diff --git a/nuget/nunit.runners.xamarin.nuspec b/nuget/nunit.runners.xamarin.nuspec index f506e84..9ce4e7a 100644 --- a/nuget/nunit.runners.xamarin.nuspec +++ b/nuget/nunit.runners.xamarin.nuspec @@ -19,7 +19,7 @@ Supported Xamarin platforms: https://github.com/nunit/nunit.xamarin https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png false - Copyright (c) 2015 Charlie Poole + Copyright (c) 2017 Charlie Poole @@ -30,6 +30,8 @@ Supported Xamarin platforms: + + diff --git a/src/runner/nunit.runner/Properties/AssemblyCommon.cs b/src/runner/nunit.runner/Properties/AssemblyCommon.cs index 80017d4..51e1572 100644 --- a/src/runner/nunit.runner/Properties/AssemblyCommon.cs +++ b/src/runner/nunit.runner/Properties/AssemblyCommon.cs @@ -26,12 +26,12 @@ [assembly: AssemblyCompany("NUnit Software")] [assembly: AssemblyProduct("NUnit 3 Xamarin Runner")] -[assembly: AssemblyCopyright("Copyright (C) 2015 Charlie Poole")] +[assembly: AssemblyCopyright("Copyright (C) 2017 Charlie Poole")] [assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("3.0.*")] -[assembly: AssemblyFileVersion("3.0.0.0")] +[assembly: AssemblyVersion("3.6.1")] +[assembly: AssemblyFileVersion("3.6.1.0")] [assembly: ComVisible(false)] diff --git a/src/tests/nunit.runner.tests/Properties/AssemblyInfoCommon.cs b/src/tests/nunit.runner.tests/Properties/AssemblyInfoCommon.cs index 6befa26..d966f5c 100644 --- a/src/tests/nunit.runner.tests/Properties/AssemblyInfoCommon.cs +++ b/src/tests/nunit.runner.tests/Properties/AssemblyInfoCommon.cs @@ -26,12 +26,12 @@ [assembly: AssemblyCompany("NUnit Software")] [assembly: AssemblyProduct("NUnit 3")] -[assembly: AssemblyCopyright("Copyright (C) 2015 Charlie Poole")] +[assembly: AssemblyCopyright("Copyright (C) 2017 Charlie Poole")] [assembly: AssemblyTrademark("NUnit is a trademark of NUnit Software")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("3.0.*")] -[assembly: AssemblyFileVersion("3.0.0.0")] +[assembly: AssemblyVersion("3.6.1")] +[assembly: AssemblyFileVersion("3.6.1.0")] [assembly: ComVisible(false)]