changelog for v2.2.3

This commit is contained in:
Wenzel Jakob 2018-04-29 14:06:14 +02:00
parent 2972cb3808
commit 8edc147d67
4 changed files with 16 additions and 4 deletions

View File

@ -9,9 +9,21 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
v2.2.3 (April 29, 2018)
-----------------------------------------------------
* The pybind11 header location detection was replaced by a new implementation
that no longer depends on ``pip`` internals (the recently released ``pip``
10 has restricted access to this API).
`#1190 <https://github.com/pybind/pybind11/pull/1190>`_.
* Small adjustment to an implementation detail to work around a compiler segmentation fault in Clang 3.3/3.4.
`#1350 <https://github.com/pybind/pybind11/pull/1350>`_.
* The minimal supported version of the Intel compiler was >= 17.0 since
pybind11 v2.1. This check is now explicit, and a compile-time error is raised
if the compiler does not meet the requirements.
if the compiler meet the requirement.
`#1363 <https://github.com/pybind/pybind11/pull/1363>`_.
* Fixed an endianness-related fault in the test suite.
`#1287 <https://github.com/pybind/pybind11/pull/1287>`_.
v2.2.2 (February 7, 2018)
-----------------------------------------------------

View File

@ -63,7 +63,7 @@ author = 'Wenzel Jakob'
# The short X.Y version.
version = '2.2'
# The full version, including alpha/beta/rc tags.
release = '2.2.2'
release = '2.2.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -93,7 +93,7 @@
#define PYBIND11_VERSION_MAJOR 2
#define PYBIND11_VERSION_MINOR 2
#define PYBIND11_VERSION_PATCH 2
#define PYBIND11_VERSION_PATCH 3
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
#if defined(_MSC_VER)

View File

@ -1,2 +1,2 @@
version_info = (2, 2, 2)
version_info = (2, 2, 3)
__version__ = '.'.join(map(str, version_info))