Skip to content

Commit 0234871

Browse files
committed
begin working on next version
1 parent 3b1dbeb commit 0234871

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = '2.5'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '2.5.0'
66+
release = '2.5.dev1'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

include/pybind11/detail/common.h

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

9595
#define PYBIND11_VERSION_MAJOR 2
9696
#define PYBIND11_VERSION_MINOR 5
97-
#define PYBIND11_VERSION_PATCH 0
97+
#define PYBIND11_VERSION_PATCH dev1
9898

9999
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
100100
#if defined(_MSC_VER)

pybind11/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (2, 5, 0)
1+
version_info = (2, 5, 'dev1')
22
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)