Skip to content

Commit 2d335c0

Browse files
committed
Merge branch 'release/0.21.0'
2 parents 44141b1 + 0c63907 commit 2d335c0

13 files changed

+5361
-29
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [vNext]
88

9+
## [0.21.0] / 2019-07-15
10+
- Changed `ProjectModelTasks.ParseProject` to revert `MSBUILD_EXE_PATH` environment variable
11+
- Added `CloudFoundryTasks`
12+
- Added missing arguments for `SonarScannerTasks`
13+
- Added missing arguments for `OctopusTasks`
14+
- Added `Jenkins.BranchName` and `Jenkins.ChangeId`
15+
916
## [0.20.1] / 2019-06-02
1017
- Fixed MSBuild evaluation issues by updating NuGet.Packaging to v4.9.2
1118

@@ -369,7 +376,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
369376
- Added CLT tasks for Git
370377
- Fixed background color in console output
371378

372-
[vNext]: https://github.com/nuke-build/common/compare/0.20.1...HEAD
379+
[vNext]: https://github.com/nuke-build/common/compare/0.21.0...HEAD
380+
[0.21.0]: https://github.com/nuke-build/common/compare/0.20.1...0.21.0
373381
[0.20.1]: https://github.com/nuke-build/common/compare/0.20.0...0.20.1
374382
[0.20.0]: https://github.com/nuke-build/common/compare/0.19.2...0.20.0
375383
[0.19.2]: https://github.com/nuke-build/common/compare/0.19.1...0.19.2

build/Build.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,9 @@ from framework in project.GetTargetFrameworks()
172172
{
173173
DotNetNuGetPush(s => s
174174
.SetSource(Source)
175-
.SetSymbolSource(SymbolSource)
176175
.SetApiKey(ApiKey)
176+
.SetSymbolSource(SymbolSource)
177+
.SetSymbolApiKey(ApiKey)
177178
.CombineWith(
178179
OutputDirectory.GlobFiles("*.nupkg").NotEmpty(), (cs, v) => cs
179180
.SetTargetPath(v)),

0 commit comments

Comments
 (0)