Skip to content

Commit 40f8755

Browse files
authored
Merge pull request #10 from nunit/release-3.6
Create 3.6 Release
2 parents 3be0745 + 0312b59 commit 40f8755

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
NUnit 3.6 - July 28, 2017
2+
3+
Fixes several packaging errors and adds a new chocolatey package. Runners and engines
4+
installed under chocolatey will see and make use of this package.
5+
6+
Issues Resolved
7+
8+
* 2 Change API reference to released version
9+
* 4 Create file of constants for XML element and attribute names
10+
* 7 No license file in NuGet package
11+
* 8 Integrate chocolatey package in release build script
12+
13+
NUnit 3.5 - October 6, 2016
14+
15+
The first independent release of the nunit-project-loader extension.

build.cake

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ var SOLUTION_FILE = "nunit-project-loader.sln";
1111
var UNIT_TEST_ASSEMBLY = "nunit-project-loader.tests.dll";
1212
var GITHUB_SITE = "https://github.com/nunit/nunit-project-loader";
1313
var WIKI_PAGE = "https://github.com/nunit/docs/wiki/Console-Command-Line";
14+
var NUGET_ID = "NUnit.Extension.NUnitProjectLoader";
15+
var CHOCO_ID = "nunit-extension-nunit-project-loader";
1416
var VERSION = "3.6.0";
1517

1618
// Metadata used in the nuget and chocolatey packages
@@ -203,7 +205,7 @@ Task("RePackageNuGet")
203205
NuGetPack(
204206
new NuGetPackSettings()
205207
{
206-
Id = "NUnit.Extension.NUnitProjectLoader",
208+
Id = NUGET_ID,
207209
Version = nugetVersion ?? packageVersion,
208210
Title = TITLE,
209211
Authors = AUTHORS,
@@ -221,6 +223,7 @@ Task("RePackageNuGet")
221223
OutputDirectory = OUTPUT_DIR,
222224
Files = new [] {
223225
new NuSpecContent { Source = PROJECT_DIR + "LICENSE.txt" },
226+
new NuSpecContent { Source = PROJECT_DIR + "CHANGES.txt" },
224227
new NuSpecContent { Source = BIN_SRC + "nunit-project-loader.dll", Target = "tools" }
225228
}
226229
});
@@ -234,7 +237,7 @@ Task("RePackageChocolatey")
234237
ChocolateyPack(
235238
new ChocolateyPackSettings()
236239
{
237-
Id = "nunit-extension-nunit-project-loader",
240+
Id = CHOCO_ID,
238241
Version = chocoVersion ?? packageVersion,
239242
Title = TITLE,
240243
Authors = AUTHORS,
@@ -257,6 +260,7 @@ Task("RePackageChocolatey")
257260
OutputDirectory = OUTPUT_DIR,
258261
Files = new [] {
259262
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "LICENSE.txt", Target = "tools" },
263+
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "CHANGES.txt", Target = "tools" },
260264
new ChocolateyNuSpecContent { Source = PROJECT_DIR + "VERIFICATION.txt", Target = "tools" },
261265
new ChocolateyNuSpecContent { Source = BIN_SRC + "nunit-project-loader.dll", Target = "tools" }
262266
}

0 commit comments

Comments
 (0)