tools/gen-changelog.sh: Exclude "-preview" tags from generated log.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
2b56bab226
commit
7a794d0d8e
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue