mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
4 lines
249 B
Bash
Executable File
4 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git tag --list | grep -P 'v.+-(stable|lts)' | sort -V | xargs git show --format='%ai' --no-patch | awk '/^v/ { version = $1 } /^[0-9]+/ { date = $1 } { if (version && date) { print version "\t" date; version = ""; date = ""; } }' | tac
|