Skip to content

Commit 7a794d0

Browse files
committed
tools/gen-changelog.sh: Exclude "-preview" tags from generated log.
Signed-off-by: Damien George <[email protected]>
1 parent 2b56bab commit 7a794d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gen-changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
echo "MicroPython change log"
44

5-
for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
5+
for t in $(git tag | grep -v -- '-rc1\|-preview' | sort -rV); do
66
echo ''
77
echo '========'
88
echo ''

0 commit comments

Comments
 (0)