pybind11/docs/release.rst

22 lines
965 B
ReStructuredText
Raw Normal View History

To release a new version of pybind11:
2016-03-09 00:31:52 +00:00
- Update the version number and push to pypi
- Update ``pybind11/_version.py`` (set release version, remove 'dev')
- ``git add`` and ``git commit``.
- ``python setup.py sdist upload``.
- ``python setup.py bdist_wheel upload``.
2016-04-07 07:06:49 +00:00
- Tag release date in ``doc/changelog.rst``.
2016-03-09 00:31:52 +00:00
- Tag the commit and push to anaconda.org
2016-04-21 10:29:17 +00:00
- ``git tag -a vX.Y -m 'vX.Y release'``.
- ``conda-build conda.recipe``
2016-03-09 00:31:52 +00:00
This should ouput the path of the generated tar.bz2 for the package
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
2016-04-07 06:59:10 +00:00
- ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done``
2016-03-09 00:31:52 +00:00
- Get back to work
- Update ``_version.py`` (add 'dev' and increment minor).
- Update version macros in ``include/pybind11/common.h``
- ``git add`` and ``git commit``. ``git push``. ``git push --tags``.
2016-03-09 00:31:52 +00:00
The remote for the last ``git push --tags`` should be the main repository for
pybind11.