Add documentation for the release process

This commit is contained in:
Lars Kruse 2020-02-09 01:58:22 +01:00
parent 648f3c15d4
commit f6adc90820
1 changed files with 13 additions and 0 deletions

13
RELEASE_CHECKLIST.md Normal file
View File

@ -0,0 +1,13 @@
# Release checklist
The following steps are required for a release:
1. update the `Changelog` file
2. execute the following commands:
```shell
new_version=2.0.0
echo "$new_version" >VERSION
git commit -m "Release $new_version" VERSION Changelog
git tag -s "$new_version" -m "$new_version"
make dist
```