Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Prepare for 3.6.1 release #93

Merged
merged 1 commit into from
Mar 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion nuget/nunit.runners.xamarin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Supported Xamarin platforms:
<projectUrl>https://github.com/nunit/nunit.xamarin</projectUrl>
<iconUrl>https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) 2015 Charlie Poole</copyright>
<copyright>Copyright (c) 2017 Charlie Poole</copyright>

<dependencies>
<group>
Expand All @@ -30,6 +30,8 @@ Supported Xamarin platforms:
</dependencies>
</metadata>
<files>
<file src="LICENSE.txt" />
<file src="CHANGES.md" />
<file src="nuget\MonoAndroid10\MainActivity.cs.txt.pp" target="content\MonoAndroid\MainActivity.cs.txt.pp" />
<file src="src\runner\nunit.runner.Droid\bin\Release\nunit.runner.Droid.dll" target="lib\MonoAndroid\nunit.runner.Droid.dll" />
<file src="src\runner\nunit.runner.Droid\bin\Release\nunit.runner.Droid.xml" target="lib\MonoAndroid\nunit.runner.Droid.xml" />
Expand Down
6 changes: 3 additions & 3 deletions src/runner/nunit.runner/Properties/AssemblyCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down
6 changes: 3 additions & 3 deletions src/tests/nunit.runner.tests/Properties/AssemblyInfoCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down