Skip to content

Commit 87954e7

Browse files
committed
fix: corrected dev versioning
1 parent 4a5b81b commit 87954e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/pybind11/detail/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define PYBIND11_VERSION_MAJOR 2
1313
#define PYBIND11_VERSION_MINOR 6
14-
#define PYBIND11_VERSION_PATCH 3.dev
14+
#define PYBIND11_VERSION_PATCH 3.dev1
1515

1616
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
1717
#define PYBIND11_NAMESPACE_END(name) }

pybind11/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ def _to_int(s):
88
return s
99

1010

11-
__version__ = "2.6.3.dev"
11+
__version__ = "2.6.3.dev1"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

0 commit comments

Comments
 (0)