File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#define PYBIND11_VERSION_MAJOR 2
13
13
#define PYBIND11_VERSION_MINOR 13
14
- #define PYBIND11_VERSION_PATCH 3
14
+ #define PYBIND11_VERSION_PATCH 4
15
15
16
16
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
17
17
// Additional convention: 0xD = dev
18
- #define PYBIND11_VERSION_HEX 0x020D0300
18
+ #define PYBIND11_VERSION_HEX 0x020D0400
19
19
20
20
// Define some generic pybind11 helper macros for warning management.
21
21
//
@@ -602,7 +602,7 @@ enum class return_value_policy : uint8_t {
602
602
object without taking ownership similar to the above
603
603
return_value_policy::reference policy. In contrast to that policy, the
604
604
function or property's implicit this argument (called the parent) is
605
- considered to be the the owner of the return value (the child).
605
+ considered to be the owner of the return value (the child).
606
606
pybind11 then couples the lifetime of the parent to the child via a
607
607
reference relationship that ensures that the parent cannot be garbage
608
608
collected while Python is still using the child. More advanced
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause)
6
6
7
7
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
8
8
9
- VERSION(2.13.3 )
9
+ VERSION(2.13.4 )
10
10
11
- ORIGINAL_SOURCE(https ://github.com/pybind/pybind11/archive/v2.13.3 .tar.gz)
11
+ ORIGINAL_SOURCE(https ://github.com/pybind/pybind11/archive/v2.13.4 .tar.gz)
12
12
13
13
ADDINCL(
14
14
GLOBAL contrib/libs/pybind11/include
You can’t perform that action at this time.
0 commit comments