From 6ed610d35eb5c111aaf1984b32ca2197feec4300 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Thu, 13 Apr 2023 13:02:06 +0100 Subject: [PATCH] Update maintenance.rst This adds the commands to push the new changelog section --- docs/maintenance.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/maintenance.rst b/docs/maintenance.rst index 4e79241..e81e72d 100644 --- a/docs/maintenance.rst +++ b/docs/maintenance.rst @@ -107,7 +107,7 @@ However, only people with ``PyPI environment access for GitHub Actions`` can app 9. If the release is approved by a maintainer. It will be pushed to `PyPI`_. If that happens, notify the issues that were fixed about this release. -10. Copy this to the start of ``CHANGES.rst`` and create a new commit with this on the ``master`` branch:: +10. Copy this to the start of ``CHANGES.rst``:: 5.0.2 (unreleased) ------------------ @@ -127,7 +127,18 @@ However, only people with ``PyPI environment access for GitHub Actions`` can app Bug fixes: - ... + +11. Push the new CHANGELOG so it is used for future changes. + + .. code-block:: bash + + git checkout master + git pull + git add CHANGES.rst + git commit -m"Add new CHANGELOG section for future release + See https://icalendar.readthedocs.io/en/latest/maintenance.html#new-releases" + git push upstream master # could be origin or whatever reference Links -----