tools/gen-changelog.sh: Exclude "-preview" tags from generated log.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2024-01-05 15:06:14 +11:00
parent 2b56bab226
commit 7a794d0d8e

View File

@ -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 ''