|
@@ -11,11 +11,11 @@
|
|
|
|
|
|
#define PYBIND11_VERSION_MAJOR 2
|
|
|
#define PYBIND11_VERSION_MINOR 13
|
|
|
-#define PYBIND11_VERSION_PATCH 3
|
|
|
+#define PYBIND11_VERSION_PATCH 4
|
|
|
|
|
|
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
|
|
|
// Additional convention: 0xD = dev
|
|
|
-#define PYBIND11_VERSION_HEX 0x020D0300
|
|
|
+#define PYBIND11_VERSION_HEX 0x020D0400
|
|
|
|
|
|
// Define some generic pybind11 helper macros for warning management.
|
|
|
//
|
|
@@ -602,7 +602,7 @@ enum class return_value_policy : uint8_t {
|
|
|
object without taking ownership similar to the above
|
|
|
return_value_policy::reference policy. In contrast to that policy, the
|
|
|
function or property's implicit this argument (called the parent) is
|
|
|
- considered to be the the owner of the return value (the child).
|
|
|
+ considered to be the owner of the return value (the child).
|
|
|
pybind11 then couples the lifetime of the parent to the child via a
|
|
|
reference relationship that ensures that the parent cannot be garbage
|
|
|
collected while Python is still using the child. More advanced
|