Skip to content

Commit

Permalink
Merge pull request #10 from nunit/release-3.6
Browse files Browse the repository at this point in the history
Create 3.6 Release
  • Loading branch information
CharliePoole authored Jul 26, 2017
2 parents 3be0745 + 0312b59 commit 40f8755
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
NUnit 3.6 - July 28, 2017

Fixes several packaging errors and adds a new chocolatey package. Runners and engines
installed under chocolatey will see and make use of this package.

Issues Resolved

* 2 Change API reference to released version
* 4 Create file of constants for XML element and attribute names
* 7 No license file in NuGet package
* 8 Integrate chocolatey package in release build script

NUnit 3.5 - October 6, 2016

The first independent release of the nunit-project-loader extension.
8 changes: 6 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ var SOLUTION_FILE = "nunit-project-loader.sln";
var UNIT_TEST_ASSEMBLY = "nunit-project-loader.tests.dll";
var GITHUB_SITE = "https://github.com/nunit/nunit-project-loader";
var WIKI_PAGE = "https://github.com/nunit/docs/wiki/Console-Command-Line";
var NUGET_ID = "NUnit.Extension.NUnitProjectLoader";
var CHOCO_ID = "nunit-extension-nunit-project-loader";
var VERSION = "3.6.0";

// Metadata used in the nuget and chocolatey packages
Expand Down Expand Up @@ -203,7 +205,7 @@ Task("RePackageNuGet")
NuGetPack(
new NuGetPackSettings()
{
Id = "NUnit.Extension.NUnitProjectLoader",
Id = NUGET_ID,
Version = nugetVersion ?? packageVersion,
Title = TITLE,
Authors = AUTHORS,
Expand All @@ -221,6 +223,7 @@ Task("RePackageNuGet")
OutputDirectory = OUTPUT_DIR,
Files = new [] {
new NuSpecContent { Source = PROJECT_DIR + "LICENSE.txt" },
new NuSpecContent { Source = PROJECT_DIR + "CHANGES.txt" },
new NuSpecContent { Source = BIN_SRC + "nunit-project-loader.dll", Target = "tools" }
}
});
Expand All @@ -234,7 +237,7 @@ Task("RePackageChocolatey")
ChocolateyPack(
new ChocolateyPackSettings()
{
Id = "nunit-extension-nunit-project-loader",
Id = CHOCO_ID,
Version = chocoVersion ?? packageVersion,
Title = TITLE,
Authors = AUTHORS,
Expand All @@ -257,6 +260,7 @@ Task("RePackageChocolatey")
OutputDirectory = OUTPUT_DIR,
Files = new [] {
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "LICENSE.txt", Target = "tools" },
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "CHANGES.txt", Target = "tools" },
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "VERIFICATION.txt", Target = "tools" },
new ChocolateyNuSpecContent { Source = BIN_SRC + "nunit-project-loader.dll", Target = "tools" }
}
Expand Down

0 comments on commit 40f8755

Please sign in to comment.