Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 2e0a0ed

Browse files
committed
Include full range of commits when computing relevant release notes
Previously, if there was a series of tags: - 8.0.2-rc-1 - 8.0.2-rc-2 - 8.1.0-dp-1 Then only the changes between 8.1.0-dp-1 and HEAD would be considered when computing release notes. This patch ensures that all changes between 8.0.2-rc-2 and HEAD are considered.
1 parent 4c99dab commit 2e0a0ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

builder/release_notes_builder.livecodescript

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,13 +1369,14 @@ private function GitGetRelevantTags pType
13691369

13701370
set the itemdelimiter to "."
13711371

1372+
put 0 into tStart
13721373
repeat for each line tLine in tTags
1374+
add 1 to tStart
13731375
if tLine begins with item 1 to 3 of sVersion then
13741376
exit repeat
13751377
end if
1376-
add 1 to tStart
13771378
end repeat
1378-
put line tStart to -1 of tTags into tTags
1379+
put line (tStart - 1) to -1 of tTags into tTags
13791380

13801381
repeat for each line tLine in tTags
13811382
if not (tLine begins with item 1 to 3 of sVersion) then

0 commit comments

Comments
 (0)