diff mbox

[3/7] docs: Add a release process guide

Message ID 1454534555-17582-3-git-send-email-stephen.finucane@intel.com
State Accepted
Headers show

Commit Message

Stephen Finucane Feb. 3, 2016, 9:22 p.m. UTC
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 <stephen.finucane@intel.com>
---
 docs/releasing.md | 32 ++++++++++++++++++++++++++++++++
 mkdocs.yml        |  1 +
 2 files changed, 33 insertions(+)
 create mode 100644 docs/releasing.md

Comments

Stephen Finucane Feb. 5, 2016, 5:44 p.m. UTC | #1
On 03 Feb 21:22, Stephen Finucane wrote:
> 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 <stephen.finucane@intel.com>

Merged.
diff mbox

Patch

diff --git a/docs/releasing.md b/docs/releasing.md
new file mode 100644
index 0000000..d8e005d
--- /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 6e28dfe..89e6c78 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'