mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
22 lines
415 B
Markdown
22 lines
415 B
Markdown
## How To Generate Changelog
|
|
|
|
Generate github token:
|
|
* https://github.com/settings/tokens - keep all checkboxes unchecked, no scopes need to be enabled.
|
|
|
|
Dependencies:
|
|
```
|
|
sudo apt-get install git curl jq python3 python3-fuzzywuzzy
|
|
```
|
|
|
|
Update information about tags:
|
|
```
|
|
git fetch --tags
|
|
```
|
|
|
|
Usage example:
|
|
|
|
```
|
|
export GITHUB_USER=... GITHUB_TOKEN=ghp_...
|
|
./changelog.sh v21.5.6.6-stable v21.6.2.7-prestable
|
|
```
|