mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
changelog for v2.2.3
This commit is contained in:
parent
2972cb3808
commit
8edc147d67
@ -9,9 +9,21 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
|
|||||||
v2.2.3 (April 29, 2018)
|
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
|
* 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
|
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)
|
v2.2.2 (February 7, 2018)
|
||||||
-----------------------------------------------------
|
-----------------------------------------------------
|
||||||
|
@ -63,7 +63,7 @@ author = 'Wenzel Jakob'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '2.2'
|
version = '2.2'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -93,7 +93,7 @@
|
|||||||
|
|
||||||
#define PYBIND11_VERSION_MAJOR 2
|
#define PYBIND11_VERSION_MAJOR 2
|
||||||
#define PYBIND11_VERSION_MINOR 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
|
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
version_info = (2, 2, 2)
|
version_info = (2, 2, 3)
|
||||||
__version__ = '.'.join(map(str, version_info))
|
__version__ = '.'.join(map(str, version_info))
|
||||||
|
Loading…
Reference in New Issue
Block a user