2021-11-02 11:38:17 +00:00
|
|
|
## How To Generate Changelog
|
2021-06-04 22:12:38 +00:00
|
|
|
|
2021-08-05 11:19:13 +00:00
|
|
|
Generate github token:
|
|
|
|
* https://github.com/settings/tokens - keep all checkboxes unchecked, no scopes need to be enabled.
|
|
|
|
|
|
|
|
Dependencies:
|
|
|
|
```
|
2022-01-17 01:06:23 +00:00
|
|
|
sudo apt-get install git curl jq python3 python3-fuzzywuzzy
|
2021-08-05 11:19:13 +00:00
|
|
|
```
|
|
|
|
|
2021-11-02 11:38:02 +00:00
|
|
|
Update information about tags:
|
|
|
|
```
|
|
|
|
git fetch --tags
|
|
|
|
```
|
2021-08-05 11:19:13 +00:00
|
|
|
|
2021-06-04 22:12:38 +00:00
|
|
|
Usage example:
|
|
|
|
|
|
|
|
```
|
|
|
|
export GITHUB_USER=... GITHUB_TOKEN=ghp_...
|
|
|
|
./changelog.sh v21.5.6.6-stable v21.6.2.7-prestable
|
|
|
|
```
|