sphinx/utils/release-checklist

113 lines
4.5 KiB
Plaintext
Raw Normal View History

2013-12-10 03:30:44 -06:00
Release checklist
=================
for stable releases
-------------------
2018-01-28 09:24:30 -06:00
* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green
2018-02-06 19:49:46 -06:00
* Run `git fetch; git status` and check nothing changed
* `python utils/bump_version.py X.Y.Z`
* Check diff by `git diff`
* Edit CHANGES if empty section exists
* `git commit -am 'Bump to X.Y.Z final'`
* `make clean`
* `python setup.py release bdist_wheel sdist upload --identity=[your key]`
* open https://pypi.python.org/pypi/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)
* Check diff by `git diff`
* `git commit -am 'Bump version'`
* `git push origin X.Y --tags`
* `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
2017-04-28 10:54:58 -05:00
for first beta releases
-----------------------
2017-04-28 10:54:58 -05:00
* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **master** branch is green
2018-02-06 19:49:46 -06:00
* Run `git fetch; git status` and check nothing changed
* Run `python setup.py extract_messages`
* Run `(cd sphinx/locale; tx push -s)`
* `python utils/bump_version.py X.Y.0b1`
* Check diff by `git diff`
* Edit CHANGES if empty section exists
* `git commit -am 'Bump to X.Y.0 beta1'`
* `make clean`
* `python setup.py release bdist_wheel sdist upload --identity=[your key]`
* open https://pypi.python.org/pypi/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)
* Check diff by `git diff`
* `git commit -am 'Bump version'`
* `git checkout -b X.Y`
* `git push origin X.Y --tags`
* `git checkout master`
* `git merge X.Y`
* `python utils/bump_version.py --in-develop A.B.0b0` (ex. 1.7.0b0)
* Check diff by `git diff`
* `git commit -am 'Bump version'`
* `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
2016-12-13 09:54:25 -06:00
for other beta releases
-----------------------
2016-12-13 09:54:25 -06:00
* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green
2018-02-06 19:49:46 -06:00
* Run `git fetch; git status` and check nothing changed
* `python utils/bump_version.py X.Y.0bN`
2017-01-21 04:45:09 -06:00
* Check diff by `git diff`
2018-01-28 09:24:30 -06:00
* Edit CHANGES if empty section exists
* `git commit -am 'Bump to X.Y.0 betaN'`
* `make clean`
2016-06-05 03:26:31 -05:00
* `python setup.py release bdist_wheel sdist upload --identity=[your key]`
2017-01-22 02:30:07 -06:00
* open https://pypi.python.org/pypi/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)
* Check diff by `git diff`
* `git commit -am 'Bump version'`
2018-01-28 09:24:30 -06:00
* `git push origin X.Y --tags`
* `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
for major releases
------------------
* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green
2018-02-06 19:49:46 -06:00
* Run `git fetch; git status` and check nothing changed
* Run `(cd sphinx/locale; tx pull -a -f)`
* Run `python setup.py compile_catalog`
* Run `git add sphinx`
* Run `git commit -am 'Update message catalogs'`
* `python utils/bump_version.py X.Y.0`
* Check diff by `git diff`
* Edit CHANGES if empty section exists
* `git commit -am 'Bump to X.Y.0 final'`
* `make clean`
* `python setup.py release bdist_wheel sdist upload --identity=[your key]`
* open https://pypi.python.org/pypi/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)
2017-01-21 04:45:09 -06:00
* Check diff by `git diff`
2016-06-05 03:26:31 -05:00
* `git commit -am 'Bump version'`
* `git push origin X.Y --tags`
2016-06-05 03:26:31 -05:00
* `git checkout master`
2018-01-28 09:24:30 -06:00
* `git merge X.Y`
2016-06-05 03:26:31 -05:00
* `git push origin master`
* `git checkout A.B` (checkout old stable)
* 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
2016-05-29 04:54:21 -05:00
* Update `sphinx-doc-translations <https://github.com/sphinx-doc/sphinx-doc-translations>`_
2018-01-28 09:24:30 -06:00
* Add new version/milestone to tracker categories
2016-12-13 09:30:34 -06:00
* Write announcement and send to sphinx-dev, sphinx-users and python-announce