Update maintenance.rst

This adds the commands to push the new changelog section
niccokunzmann-patch-2
Nicco Kunzmann 2023-04-13 13:02:06 +01:00 zatwierdzone przez GitHub
rodzic 3ea81eadc8
commit 6ed610d35e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -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
-----