updated changelog with v1.8.1, updated release instructions

This commit is contained in:
Wenzel Jakob 2016-07-12 18:02:13 +02:00
parent 4d727e10ab
commit a720a6046e
3 changed files with 7 additions and 2 deletions

View File

@ -27,9 +27,12 @@ Breaking changes queued for v2.0.0 (Not yet released)
* ``make_iterator()`` improvements for better compatibility with various types
(now uses prefix increment operator)
* ``arg()`` now accepts a wider range of argument types for default values
* Various minor improvements of library internals (no user-visible changes)
1.8.1 (July 12, 2016)
----------------------
* Fixed a rare but potentially very severe issue when the garbage collector ran
during pybind11 type creation.
* Various minor improvements of library internals (no user-visible changes)
1.8.0 (June 14, 2016)
----------------------

View File

@ -5,7 +5,8 @@ To release a new version of pybind11:
- Update version in ``docs/conf.py``
- Tag release date in ``docs/changelog.rst``.
- ``git add`` and ``git commit``.
- ``git tag -a vX.Y -m 'vX.Y release'``.
- 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``.
- ``python setup.py sdist upload``.

View File

@ -32,6 +32,7 @@
#define PYBIND11_VERSION_MAJOR 1
#define PYBIND11_VERSION_MINOR 9
#define PYBIND11_VERSION_PATCH dev0
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)