diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:20:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:20:59 +0000 |
commit | 5de84c9242643f786eff03726286578726d7d390 (patch) | |
tree | 8e8eadab2b786c41d7b8a2cdafbb467588928ad0 /utils/release-checklist | |
parent | Releasing progress-linux version 7.2.6-8~progress7.99u1. (diff) | |
download | sphinx-5de84c9242643f786eff03726286578726d7d390.tar.xz sphinx-5de84c9242643f786eff03726286578726d7d390.zip |
Merging upstream version 7.3.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'utils/release-checklist')
-rw-r--r-- | utils/release-checklist | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/utils/release-checklist b/utils/release-checklist deleted file mode 100644 index 5aabbce..0000000 --- a/utils/release-checklist +++ /dev/null @@ -1,70 +0,0 @@ -Release checklist -================= - -A stable release is a release where the minor or micro version parts are -incremented. -A major release is a release where the major version part is incremented. - -Checks ------- - -* open "https://github.com/sphinx-doc/sphinx/actions?query=branch:master" and all tests has passed -* Run ``git fetch; git status`` and check that nothing has changed - -Bump version ------------- - -for stable and major releases -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -* ``python utils/bump_version.py X.Y.Z`` -* Check diff by ``git diff`` -* ``git commit -am 'Bump to X.Y.Z final'`` -* ``git tag vX.Y.Z -m "Sphinx X.Y.Z"`` - -for beta releases -~~~~~~~~~~~~~~~~~ - -* ``python utils/bump_version.py X.Y.0bN`` -* Check diff by ``git diff`` -* ``git commit -am 'Bump to X.Y.0 betaN'`` -* ``git tag vX.Y.0b1 -m "Sphinx X.Y.0bN"`` - -Build Sphinx ------------- - -* ``make clean`` -* ``python -m build .`` -* ``twine upload dist/Sphinx-*`` -* open https://pypi.org/project/Sphinx/ and check for any obvious errors - -for stable and major releases -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -* ``sh utils/bump_docker.sh X.Y.Z`` - -Bump to next development version --------------------------------- - -for stable and major releases -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -* ``python utils/bump_version.py --in-develop X.Y.Z+1b0`` (ex. 1.5.3b0) - -for beta releases -~~~~~~~~~~~~~~~~~ - -* ``python utils/bump_version.py --in-develop X.Y.0bN+1`` (ex. 1.6.0b2) - -Commit version bump -------------------- - -* Check diff by ``git diff`` -* ``git commit -am 'Bump version'`` -* ``git push origin master --tags`` - -Final steps ------------ - -* Add new version/milestone to tracker categories -* Write announcement and send to sphinx-dev, sphinx-users and python-announce |