pybind11/docs/release.rst

23 lines
977 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')
2016-05-26 14:50:15 +00:00
- Update version in ``docs/conf.py``
- Tag release date in ``docs/changelog.rst``.
2016-03-09 00:31:52 +00:00
- ``git add`` and ``git commit``.
- if new minor version: ``git checkout -b vX.Y``, ``git push -u origin vX.Y``
- ``git tag -a vX.Y.Z -m 'vX.Y.Z release'``.
- ``git push``
- ``git push --tags``.
2016-03-09 00:31:52 +00:00
- ``python setup.py sdist upload``.
- ``python setup.py bdist_wheel upload``.
2016-06-14 14:08:31 +00:00
- Update conda-forge (https://github.com/conda-forge/pybind11-feedstock) via PR
- change version number in ``recipe/meta.yml``
- update checksum to match the one computed by pypi
2016-03-09 00:31:52 +00:00
- Get back to work
- Update ``_version.py`` (add 'dev' and increment minor).
2016-06-14 13:24:47 +00:00
- Update version in ``docs/conf.py``
2016-03-09 00:31:52 +00:00
- Update version macros in ``include/pybind11/common.h``
- ``git add`` and ``git commit``.
``git push``