summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-12-15 17:09:52 +0000
committerGerrit Code Review <review@openstack.org>2020-12-15 17:09:52 +0000
commit4896f58a2d5a7fa58a03d93b934470402b917b10 (patch)
treec6190cd96f2987671cd7392854c8680f3fc6e92a
parentd5cb2e32d717a8eb74fc39393a67bae377658ee1 (diff)
parent4e9c6184c4c37ecac0e5621de1fb3f11be4b1766 (diff)
downloadironic-4896f58a2d5a7fa58a03d93b934470402b917b10.tar.gz
Merge "Fix release guide and include intermediate branches"
-rw-r--r--doc/source/contributor/releasing.rst14
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/source/contributor/releasing.rst b/doc/source/contributor/releasing.rst
index 44ec3616e..5d2da977c 100644
--- a/doc/source/contributor/releasing.rst
+++ b/doc/source/contributor/releasing.rst
@@ -191,19 +191,27 @@ following the next steps:
minor (feature) or patch (bugfix).
Note that in this case ``series`` is a code name (train, ussuri), not a
- branch.
+ branch. That is also valid for the current development branch (master) that
+ takes the code name of the future stable release, for example if the future
+ stable release code name is wallaby, we need to use wallaby as ``series``.
The ``--stable-branch argument`` is used only for branching in the end of a
cycle, independent projects are not branched this way though.
+ The ``--intermediate-branch`` option is used to create an intermediate
+ bugfix branch following the
+ `new release model for ironic projects <https://specs.openstack.org/openstack/ironic-specs/specs/not-implemented/new-release-model.html>`_.
+
To propose the release, use the script to update the deliverable file, then
commit the change, and propose it for review.
- For example, to propose a minor release for ironic in the master branch use:
+ For example, to propose a minor release for ironic in the master branch
+ (current development branch), considering that the code name of the future
+ stable release is wallaby, use:
.. code-block:: bash
- tox -e venv -- new-release -v master ironic feature
+ tox -e venv -- new-release -v wallaby ironic feature
Remember to use a meaningful topic, usually using the name of the
deliverable, the new version and the branch, if applicable.