From f6adc90820c03946d3aeaa578368430e76cdcd06 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Sun, 9 Feb 2020 01:58:22 +0100 Subject: [PATCH] Add documentation for the release process --- RELEASE_CHECKLIST.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 RELEASE_CHECKLIST.md diff --git a/RELEASE_CHECKLIST.md b/RELEASE_CHECKLIST.md new file mode 100644 index 0000000..ea460ad --- /dev/null +++ b/RELEASE_CHECKLIST.md @@ -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 +```