Skip to content

Commit 6737d30

Browse files
committed
Intermediate changes
1 parent 2240ca3 commit 6737d30

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

contrib/libs/pybind11/include/pybind11/detail/common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
#define PYBIND11_VERSION_MAJOR 2
1313
#define PYBIND11_VERSION_MINOR 13
14-
#define PYBIND11_VERSION_PATCH 3
14+
#define PYBIND11_VERSION_PATCH 4
1515

1616
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
1717
// Additional convention: 0xD = dev
18-
#define PYBIND11_VERSION_HEX 0x020D0300
18+
#define PYBIND11_VERSION_HEX 0x020D0400
1919

2020
// Define some generic pybind11 helper macros for warning management.
2121
//
@@ -602,7 +602,7 @@ enum class return_value_policy : uint8_t {
602602
object without taking ownership similar to the above
603603
return_value_policy::reference policy. In contrast to that policy, the
604604
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).
606606
pybind11 then couples the lifetime of the parent to the child via a
607607
reference relationship that ensures that the parent cannot be garbage
608608
collected while Python is still using the child. More advanced

contrib/libs/pybind11/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause)
66

77
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
88

9-
VERSION(2.13.3)
9+
VERSION(2.13.4)
1010

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)
1212

1313
ADDINCL(
1414
GLOBAL contrib/libs/pybind11/include

0 commit comments

Comments
 (0)