File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,20 @@ 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.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
+
9
18
v2.4.1 (Sep 20, 2019)
10
19
-----------------------------------------------------
11
20
12
21
* 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 >`_.
14
23
15
24
v2.4.0 (Sep 19, 2019)
16
25
-----------------------------------------------------
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.dev2 '
66
+ release = '2.4.2 '
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 dev2
97
+ #define PYBIND11_VERSION_PATCH 2
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 , 'dev2' )
1
+ version_info = (2 , 4 , 2 )
2
2
__version__ = '.' .join (map (str , version_info ))
You can’t perform that action at this time.
0 commit comments