diff options
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | utils/release-checklist | 20 |
2 files changed, 9 insertions, 12 deletions
@@ -31,6 +31,7 @@ clean-backupfiles: clean-generated: find . -name '.DS_Store' -exec rm -f {} + rm -rf Sphinx.egg-info/ + rm -rf dists/ rm -rf doc/_build/ rm -f sphinx/pycode/*.pickle rm -f utils/*3.py* diff --git a/utils/release-checklist b/utils/release-checklist index 171fe50fc..94773e458 100644 --- a/utils/release-checklist +++ b/utils/release-checklist @@ -11,8 +11,8 @@ for stable releases * ``git commit -am 'Bump to X.Y.Z final'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine check dist/Sphinx-X.Y.Z*`` -* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-*`` +* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.Z`` * ``python utils/bump_version.py --in-develop X.Y.Zb0`` (ex. 1.5.3b0) @@ -22,7 +22,6 @@ for stable releases * ``git checkout master`` * ``git merge X.Y`` * ``git push origin master`` -* Update `sphinx-doc-translations <https://github.com/sphinx-doc/sphinx-doc-translations>`_ * Add new version/milestone to tracker categories * Write announcement and send to sphinx-dev, sphinx-users and python-announce @@ -38,8 +37,8 @@ for first beta releases * ``git commit -am 'Bump to X.Y.0 beta1'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine check dist/Sphinx-X.Y.Z*`` -* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-*`` +* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0b1`` * ``python utils/bump_version.py --in-develop X.Y.0b2`` (ex. 1.6.0b2) @@ -54,7 +53,6 @@ for first beta releases * ``git commit -am 'Bump version'`` * ``git push origin master`` * open https://github.com/sphinx-doc/sphinx/settings/branches and make ``X.Y`` branch protected -* Update `sphinx-doc-translations <https://github.com/sphinx-doc/sphinx-doc-translations>`_ * Add new version/milestone to tracker categories * Write announcement and send to sphinx-dev, sphinx-users and python-announce @@ -68,8 +66,8 @@ for other beta releases * ``git commit -am 'Bump to X.Y.0 betaN'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine check dist/Sphinx-X.Y.Z*`` -* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-*`` +* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0bN`` * ``python utils/bump_version.py --in-develop X.Y.0bM`` (ex. 1.6.0b3) @@ -79,7 +77,6 @@ for other beta releases * ``git checkout master`` * ``git merge X.Y`` * ``git push origin master`` -* Update `sphinx-doc-translations <https://github.com/sphinx-doc/sphinx-doc-translations>`_ * Add new version/milestone to tracker categories * Write announcement and send to sphinx-dev, sphinx-users and python-announce @@ -97,8 +94,8 @@ for major releases * ``git commit -am 'Bump to X.Y.0 final'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine check dist/Sphinx-X.Y.Z*`` -* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-*`` +* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0`` * ``python utils/bump_version.py --in-develop X.Y.1b0`` (ex. 1.6.1b0) @@ -113,6 +110,5 @@ for major releases * Run ``git tag A.B`` to paste a tag instead branch * Run ``git push origin :A.B --tags`` to remove old stable branch * open https://readthedocs.org/dashboard/sphinx/versions/ and enable the released version -* Update `sphinx-doc-translations <https://github.com/sphinx-doc/sphinx-doc-translations>`_ * Add new version/milestone to tracker categories * Write announcement and send to sphinx-dev, sphinx-users and python-announce |
