@@ -14,12 +14,15 @@ v2.3.0 (Not yet released)
14
14
v2.2.1 (Not yet released)
15
15
-----------------------------------------------------
16
16
17
- * Fixed compilation with Clang on host GCC < 5 (old libstdc++ which isn't fully
18
- C++11 compliant). ` #1062 <https://github.com/pybind/pybind11/pull/1062 >`_.
17
+ * Added `` py::module::reload() `` member function for reloading a module.
18
+ ` #1040 <https://github.com/pybind/pybind11/pull/1040 >`_.
19
19
20
20
* Fixed a reference leak in the number converter.
21
21
`#1078 <https://github.com/pybind/pybind11/pull/1078 >`_.
22
22
23
+ * Fixed compilation with Clang on host GCC < 5 (old libstdc++ which isn't fully
24
+ C++11 compliant). `#1062 <https://github.com/pybind/pybind11/pull/1062 >`_.
25
+
23
26
* Fixed a regression where the automatic ``std::vector<bool> `` caster would
24
27
fail to compile. The same fix also applies to any container which returns
25
28
element proxies instead of references.
@@ -28,13 +31,19 @@ v2.2.1 (Not yet released)
28
31
* Fixed a regression where the ``py::keep_alive `` policy could not be applied
29
32
to constructors. `#1065 <https://github.com/pybind/pybind11/pull/1065 >`_.
30
33
31
- * Relax overly strict ``py::picke() `` check for matching get and set types.
32
- `#1064 <https://github.com/pybind/pybind11/pull/1064 >`_.
33
-
34
34
* Fixed a nullptr dereference when loading a ``py::module_local `` type
35
35
that's only registered in an external module.
36
36
`#1058 <https://github.com/pybind/pybind11/pull/1058 >`_.
37
37
38
+ * Fixed implicit conversion of accessors to types derived from ``py::object ``.
39
+ `#1076 <https://github.com/pybind/pybind11/pull/1076 >`_.
40
+
41
+ * The ``name `` in ``PYBIND11_MODULE(name, variable) `` can now be a macro.
42
+ `#1082 <https://github.com/pybind/pybind11/pull/1082 >`_.
43
+
44
+ * Relaxed overly strict ``py::pickle() `` check for matching get and set types.
45
+ `#1064 <https://github.com/pybind/pybind11/pull/1064 >`_.
46
+
38
47
* Conversion errors now try to be more informative when it's likely that
39
48
a missing header is the cause (e.g. forgetting ``<pybind11/stl.h> ``).
40
49
`#1077 <https://github.com/pybind/pybind11/pull/1077 >`_.
0 commit comments