Skip to content

Commit

Permalink
tools/gen-changelog.sh: Exclude "-preview" tags from generated log.
Browse files Browse the repository at this point in the history
Signed-off-by: Damien George <[email protected]>
  • Loading branch information
dpgeorge committed Jan 5, 2024
1 parent 2b56bab commit 7a794d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gen-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo "MicroPython change log"

for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
for t in $(git tag | grep -v -- '-rc1\|-preview' | sort -rV); do
echo ''
echo '========'
echo ''
Expand Down

0 comments on commit 7a794d0

Please sign in to comment.