Skip to content

Commit 8edc147

Browse files
committed
changelog for v2.2.3
1 parent 2972cb3 commit 8edc147

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

docs/changelog.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,21 @@ Starting with version 1.8.0, pybind11 releases use a `semantic versioning
99
v2.2.3 (April 29, 2018)
1010
-----------------------------------------------------
1111

12+
* The pybind11 header location detection was replaced by a new implementation
13+
that no longer depends on ``pip`` internals (the recently released ``pip``
14+
10 has restricted access to this API).
15+
`#1190 <https://github.com/pybind/pybind11/pull/1190>`_.
16+
17+
* Small adjustment to an implementation detail to work around a compiler segmentation fault in Clang 3.3/3.4.
18+
`#1350 <https://github.com/pybind/pybind11/pull/1350>`_.
19+
1220
* The minimal supported version of the Intel compiler was >= 17.0 since
1321
pybind11 v2.1. This check is now explicit, and a compile-time error is raised
14-
if the compiler does not meet the requirements.
22+
if the compiler meet the requirement.
23+
`#1363 <https://github.com/pybind/pybind11/pull/1363>`_.
24+
25+
* Fixed an endianness-related fault in the test suite.
26+
`#1287 <https://github.com/pybind/pybind11/pull/1287>`_.
1527

1628
v2.2.2 (February 7, 2018)
1729
-----------------------------------------------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = '2.2'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '2.2.2'
66+
release = '2.2.3'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

include/pybind11/detail/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393

9494
#define PYBIND11_VERSION_MAJOR 2
9595
#define PYBIND11_VERSION_MINOR 2
96-
#define PYBIND11_VERSION_PATCH 2
96+
#define PYBIND11_VERSION_PATCH 3
9797

9898
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
9999
#if defined(_MSC_VER)

pybind11/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (2, 2, 2)
1+
version_info = (2, 2, 3)
22
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)