Correct tag prefix in CHANGELOG.md
This commit is contained in:
parent
bb24273eb4
commit
07a14d51f4
|
@ -1,8 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.92](https://github.com/gnome-terminator/terminator/tree/1.92) (2020-04-18)
|
## [v1.92](https://github.com/gnome-terminator/terminator/tree/v1.92) (2020-04-18)
|
||||||
|
|
||||||
[Full Changelog](https://github.com/gnome-terminator/terminator/compare/1.91...1.92)
|
[Full Changelog](https://github.com/gnome-terminator/terminator/compare/1.91...v1.92)
|
||||||
|
|
||||||
This is the first release since 2017, while we are now a few years later a few things changed.
|
This is the first release since 2017, while we are now a few years later a few things changed.
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,12 @@ Releasing Terminator
|
||||||
====================
|
====================
|
||||||
|
|
||||||
Make sure you have the latest master branch, no un-committed changes, and are ready to release that state.
|
Make sure you have the latest master branch, no un-committed changes, and are ready to release that state.
|
||||||
|
|
||||||
```
|
```
|
||||||
VERSION=1.92
|
VERSION=1.92
|
||||||
```
|
```
|
||||||
|
|
||||||
## Set version in Python
|
## Set version in Python
|
||||||
|
|
||||||
```
|
```
|
||||||
sed -i "s/APP_VERSION =.*/APP_VERSION = '${VERSION}'/" terminatorlib/version.py
|
sed -i "s/APP_VERSION =.*/APP_VERSION = '${VERSION}'/" terminatorlib/version.py
|
||||||
|
@ -18,7 +18,7 @@ sed -i "s/APP_VERSION =.*/APP_VERSION = '${VERSION}'/" terminatorlib/version.py
|
||||||
For the changelog we are using [github-changelog-generator](https://github.com/github-changelog-generator/github-changelog-generator)
|
For the changelog we are using [github-changelog-generator](https://github.com/github-changelog-generator/github-changelog-generator)
|
||||||
|
|
||||||
```
|
```
|
||||||
github_changelog_generator --future-release "$VERSION"
|
github_changelog_generator --future-release "v$VERSION"
|
||||||
```
|
```
|
||||||
|
|
||||||
Check and review CHANGELOG.md for the expected result.
|
Check and review CHANGELOG.md for the expected result.
|
||||||
|
|
Loading…
Reference in New Issue