File tree 4 files changed +9
-3
lines changed 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Changelog
6
6
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
7
7
<http://semver.org> `_ policy.
8
8
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
+
9
15
v2.4.2 (Sep 21, 2019)
10
16
-----------------------------------------------------
11
17
Original file line number Diff line number Diff line change 63
63
# The short X.Y version.
64
64
version = '2.4'
65
65
# The full version, including alpha/beta/rc tags.
66
- release = '2.4.dev3 '
66
+ release = '2.4.3 '
67
67
68
68
# The language for content autogenerated by Sphinx. Refer to documentation
69
69
# for a list of supported languages.
Original file line number Diff line number Diff line change 94
94
95
95
#define PYBIND11_VERSION_MAJOR 2
96
96
#define PYBIND11_VERSION_MINOR 4
97
- #define PYBIND11_VERSION_PATCH dev3
97
+ #define PYBIND11_VERSION_PATCH 3
98
98
99
99
// / Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
100
100
#if defined(_MSC_VER)
Original file line number Diff line number Diff line change 1
- version_info = (2 , 4 , 'dev3' )
1
+ version_info = (2 , 4 , 3 )
2
2
__version__ = '.' .join (map (str , version_info ))
You can’t perform that action at this time.
0 commit comments