File tree 3 files changed +8
-4
lines changed
source/Nuke.Common/ChangeLog
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ vNext]
8
8
9
+ ## [ 0.17.2] / 2019-02-24
10
+ - Fixed parsing of changelog
11
+
9
12
## [ 0.17.1] / 2019-02-23
10
13
- Fixed attributes in build tasks
11
14
@@ -311,7 +314,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
311
314
- Added CLT tasks for Git
312
315
- Fixed background color in console output
313
316
314
- [ vNext ] : https://github.com/nuke-build/common/compare/0.17.1...HEAD
317
+ [ vNext ] : https://github.com/nuke-build/common/compare/0.17.2...HEAD
318
+ [ 0.17.2 ] : https://github.com/nuke-build/common/compare/0.17.1...0.17.2
315
319
[ 0.17.1 ] : https://github.com/nuke-build/common/compare/0.17.0...0.17.1
316
320
[ 0.17.0 ] : https://github.com/nuke-build/common/compare/0.16.0...0.17.0
317
321
[ 0.16.0 ] : https://github.com/nuke-build/common/compare/0.15.0...0.16.0
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ partial class Build
28
28
29
29
Target Release => _ => _
30
30
. DependsOn ( Changelog )
31
- . Requires ( ( ) => GitHasCleanWorkingCopy ( ) )
31
+ . Requires ( ( ) => ! GitRepository . IsOnReleaseBranch ( ) || GitHasCleanWorkingCopy ( ) )
32
32
. Executes ( ( ) =>
33
33
{
34
34
if ( ! GitRepository . IsOnReleaseBranch ( ) )
@@ -39,7 +39,7 @@ partial class Build
39
39
40
40
Target Hotfix => _ => _
41
41
. DependsOn ( Changelog )
42
- . Requires ( ( ) => GitHasCleanWorkingCopy ( ) )
42
+ . Requires ( ( ) => ! GitRepository . IsOnHotfixBranch ( ) || GitHasCleanWorkingCopy ( ) )
43
43
. Executes ( ( ) =>
44
44
{
45
45
var masterVersion = GitVersion ( s => s
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ string GetCaption(string str)
202
202
{
203
203
Caption = caption ,
204
204
StartIndex = index ,
205
- EndIndex = nextNonReleaseContentIndex != 1
205
+ EndIndex = nextNonReleaseContentIndex != - 1
206
206
? nextNonReleaseContentIndex - 1
207
207
: content . Count - 1
208
208
} ;
You can’t perform that action at this time.
0 commit comments