Skip to content

Commit eeee7b5

Browse files
committed
Merge branch 'hotfix/0.21.1'
2 parents 2d335c0 + d9cd73f commit eeee7b5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

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

77
## [vNext]
88

9+
## [0.21.1] / 2019-07-19
10+
- Fixed logging of warnings
11+
912
## [0.21.0] / 2019-07-15
1013
- Changed `ProjectModelTasks.ParseProject` to revert `MSBUILD_EXE_PATH` environment variable
1114
- Added `CloudFoundryTasks`
@@ -376,7 +379,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
376379
- Added CLT tasks for Git
377380
- Fixed background color in console output
378381

379-
[vNext]: https://github.com/nuke-build/common/compare/0.21.0...HEAD
382+
[vNext]: https://github.com/nuke-build/common/compare/0.21.1...HEAD
383+
[0.21.1]: https://github.com/nuke-build/common/compare/0.21.0...0.21.1
380384
[0.21.0]: https://github.com/nuke-build/common/compare/0.20.1...0.21.0
381385
[0.20.1]: https://github.com/nuke-build/common/compare/0.20.0...0.20.1
382386
[0.20.0]: https://github.com/nuke-build/common/compare/0.19.2...0.20.0

build/Build.cs

-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ partial class Build : NukeBuild
4141

4242
[Parameter("ApiKey for the specified source")] readonly string ApiKey;
4343
[Parameter] readonly string Source = "https://api.nuget.org/v3/index.json";
44-
[Parameter] readonly string SymbolSource = "https://nuget.smbsrc.net/";
4544

4645
[Parameter("Gitter authtoken")] readonly string GitterAuthToken;
4746
[Parameter("Slack webhook")] readonly string SlackWebhook;
@@ -173,8 +172,6 @@ from framework in project.GetTargetFrameworks()
173172
DotNetNuGetPush(s => s
174173
.SetSource(Source)
175174
.SetApiKey(ApiKey)
176-
.SetSymbolSource(SymbolSource)
177-
.SetSymbolApiKey(ApiKey)
178175
.CombineWith(
179176
OutputDirectory.GlobFiles("*.nupkg").NotEmpty(), (cs, v) => cs
180177
.SetTargetPath(v)),

shell-completion.yml

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Skip:
3535
SlackWebhook:
3636
Solution:
3737
Source:
38-
SymbolSource:
3938
Target:
4039
- Analysis
4140
- Announce

source/Nuke.Common/ControlFlow.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ private static object SuppressErrorsIf(bool condition, Delegate action, object d
179179
var innerException = exception.InnerException.NotNull("innerException != null");
180180
Logger.Warn(includeStackTrace
181181
? new[] { innerException.Message, "StackTrace:", innerException.StackTrace }.JoinNewLine()
182-
: exception.Message);
182+
: innerException.Message);
183183
return defaultValue;
184184
}
185185
}

0 commit comments

Comments
 (0)