Skip to content

Commit 7ec2ddf

Browse files
committed
v2.4.2 release
1 parent 7f5dad7 commit 7ec2ddf

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

docs/changelog.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@ Changelog
66
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
77
<http://semver.org>`_ policy.
88

9+
v2.4.2 (Sep 21, 2019)
10+
-----------------------------------------------------
11+
12+
* Replaced usage of a C++14 only construct. `#1929
13+
<https://github.com/pybind/pybind11/pull/1929>`_.
14+
15+
* Made an ifdef future-proof for Python >= 4. `f3109d
16+
<https://github.com/pybind/pybind11/commit/f3109d>`_.
17+
918
v2.4.1 (Sep 20, 2019)
1019
-----------------------------------------------------
1120

1221
* Fixed a problem involving implicit conversion from enumerations to integers
13-
on Python 3.8. `1780 <https://github.com/pybind/pybind11/pull/1780>`_.
22+
on Python 3.8. `#1780 <https://github.com/pybind/pybind11/pull/1780>`_.
1423

1524
v2.4.0 (Sep 19, 2019)
1625
-----------------------------------------------------

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.4'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '2.4.dev2'
66+
release = '2.4.2'
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
@@ -94,7 +94,7 @@
9494

9595
#define PYBIND11_VERSION_MAJOR 2
9696
#define PYBIND11_VERSION_MINOR 4
97-
#define PYBIND11_VERSION_PATCH dev2
97+
#define PYBIND11_VERSION_PATCH 2
9898

9999
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
100100
#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, 4, 'dev2')
1+
version_info = (2, 4, 2)
22
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)