Skip to content

Commit 80d4524

Browse files
committed
v2.4.3 release
1 parent 6cb584e commit 80d4524

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

docs/changelog.rst

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

9+
v2.4.3 (Oct 15, 2019)
10+
-----------------------------------------------------
11+
12+
* Adapt pybind11 to a C API convention change in Python 3.8. `#1950
13+
<https://github.com/pybind/pybind11/pull/1950>`_.
14+
915
v2.4.2 (Sep 21, 2019)
1016
-----------------------------------------------------
1117

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.dev3'
66+
release = '2.4.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
@@ -94,7 +94,7 @@
9494

9595
#define PYBIND11_VERSION_MAJOR 2
9696
#define PYBIND11_VERSION_MINOR 4
97-
#define PYBIND11_VERSION_PATCH dev3
97+
#define PYBIND11_VERSION_PATCH 3
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, 'dev3')
1+
version_info = (2, 4, 3)
22
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)