We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44fcc3 commit 82cf793Copy full SHA for 82cf793
3 files changed
docs/conf.py
@@ -63,7 +63,7 @@
63
# The short X.Y version.
64
version = '2.4'
65
# The full version, including alpha/beta/rc tags.
66
-release = '2.4.1'
+release = '2.4.dev2'
67
68
# The language for content autogenerated by Sphinx. Refer to documentation
69
# for a list of supported languages.
include/pybind11/detail/common.h
@@ -94,7 +94,7 @@
94
95
#define PYBIND11_VERSION_MAJOR 2
96
#define PYBIND11_VERSION_MINOR 4
97
-#define PYBIND11_VERSION_PATCH 1
+#define PYBIND11_VERSION_PATCH dev2
98
99
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
100
#if defined(_MSC_VER)
pybind11/_version.py
@@ -1,2 +1,2 @@
1
-version_info = (2, 4, 1)
+version_info = (2, 4, 'dev2')
2
__version__ = '.'.join(map(str, version_info))
0 commit comments