mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 04:51:12 +02:00
tools/gen-changelog.sh: Exclude "-preview" tags from generated log.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -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 ''
|
||||
|
Reference in New Issue
Block a user