-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepping a quick release for 0.10.16 to fix macos-sonoma crash Co-authored-by: Alan Chen <[email protected]>
- Loading branch information
Showing
4 changed files
with
36 additions
and
7 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 |
---|---|---|
@@ -1 +1 @@ | ||
0.11.0-dev-1 | ||
0.10.16 |
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,17 @@ | ||
#!/bin/sh | ||
# run to view changelog updates | ||
# run with argument "modify" to prepend changelog updates to CHANGELOG.md | ||
|
||
set -e | ||
|
||
MODIFY="${1:-no}" | ||
|
||
LAST_TAG=$(gh release list --limit 1 --exclude-pre-releases | cut -w -f1) | ||
CURR_TAG=$(cat VERSION) | ||
echo git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG} | ||
|
||
if [ "$MODIFY" = "modify" ]; then | ||
git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG} -p CHANGELOG.md | ||
else | ||
git cliff ${LAST_TAG}..HEAD -t ${CURR_TAG} | less | ||
fi |
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