-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the release scripts to include the breaking changes section
- Loading branch information
Showing
4 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/awk -f | ||
|
||
# Start echoing after the first list item | ||
/\* / { | ||
STARTED=1 | ||
EMPTY_LINE=0 | ||
} | ||
|
||
# Remember if we have seen an empty line | ||
/^[[:space:]]*$/ { | ||
EMPTY_LINE=1 | ||
} | ||
|
||
# Exit when seeing a new version number | ||
/^v[[:digit:]]/ { | ||
if (STARTED) exit | ||
} | ||
|
||
# Print if the line is not empty | ||
# and restore the empty line we have skipped | ||
!/^[[:space:]]*$/ { | ||
if (STARTED) { | ||
if (EMPTY_LINE) { | ||
print "" | ||
EMPTY_LINE=0 | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters