Private
Public Access
1
0

set version to 2.0.0-rc.1, update scripts

This commit is contained in:
2026-05-24 12:55:53 +02:00
parent a87825df6d
commit b3b262b208
5 changed files with 20 additions and 3 deletions

6
printLatestCommits.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
count="${1:-10}"
git -C "$script_dir" log -n "$count" --pretty=format:%s | awk '{ lines[NR] = $0 } END { for (i = NR; i >= 1; i--) print lines[i] }'