From: Stephen Finucane Date: Tue, 2 Feb 2016 23:18:16 +0000 (+0000) Subject: docs: Add a release process guide X-Git-Tag: v1.1.0~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6868e36096a6aaf9198d24cdc4f8dd8cdd9f4694;p=thirdparty%2Fpatchwork.git docs: Add a release process guide This guide serves to illustrate import aspects of patchworks release process: when, why and how. It also serves as a helpful reminder for the maintainers themselves. Signed-off-by: Stephen Finucane --- diff --git a/docs/releasing.md b/docs/releasing.md new file mode 100644 index 00000000..d8e005d1 --- /dev/null +++ b/docs/releasing.md @@ -0,0 +1,32 @@ +# Release Process + +## Versioning + +Since version 1.0, patchwork has implemented a version of +[Semantic Versioning][ref-semver]. To summarise, releases take the format +**MAJOR.MINOR.PATCH** (or just **MAJOR.MINOR**). We increment: + +1. **MAJOR** version when we make major UI changes or functionality updates +2. **MINOR** version when we make minor UI changes or functionality updates +3. **PATCH** version when we make make bug fixes, dependency updates etc. + +In Git, each release will have a tag indicating the version number. In +addition, each release series has it's own branch called `stable/MAJOR.MINOR` +to allow backporting of bugfixes or security updates to older versions. + +## Release Cycle + +There is no cadence for releases: they are made available as necessary. + +## Supported Versions + +Typically all development should occur on `master`. While we will backport +bugfixes and security updates, we will not backport any new features. This +is to ensure stability for users of these versions of patchwork. + +## Release Checklist + +* Documentation has been updated with latest release version +* Documentation references latest supported version of Django + +[ref-semver]: http://semver.org/ \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 6e28dfe5..89e6c78b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,3 +9,4 @@ pages: - Installation: 'installation.md' - Development: 'development.md' - Contributing: 'contributing.md' + - Release Process: 'releasing.md'