Skip to content

Commit 3c6d0c1

Browse files
committed
Narrow definition of "relevant" release notes
Now release notes will only include changes since the latest GM release. This will help keep point release notes concise and help people decide whether they need to update (they always need to update).
1 parent 89995af commit 3c6d0c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builder/release_notes_builder.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,15 +1315,15 @@ private function GitGetRelevantTags pType
13151315
set the itemdelimiter to "."
13161316

13171317
repeat for each line tLine in tTags
1318-
if tLine begins with item 1 to 2 of sVersion then
1318+
if tLine begins with item 1 to 3 of sVersion then
13191319
exit repeat
13201320
end if
13211321
add 1 to tStart
13221322
end repeat
13231323
put line tStart to -1 of tTags into tTags
13241324

13251325
repeat for each line tLine in tTags
1326-
if not (tLine begins with item 1 to 2 of sVersion) then
1326+
if not (tLine begins with item 1 to 3 of sVersion) then
13271327
if not (tEnd is 0) then
13281328
exit repeat
13291329
end if

0 commit comments

Comments
 (0)