Skip to content

Commit 8cf091a

Browse files
committed
updated version flags for next version
1 parent 2a5a5ec commit 8cf091a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Changelog
66
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
77
<http://semver.org>`_ policy.
88

9+
v2.3.0 (Not yet released)
10+
-----------------------------------------------------
11+
12+
* TBD
13+
914
v2.2.0 (August 31, 2017)
1015
-----------------------------------------------------
1116

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = '2.2'
64+
version = '2.3'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '2.2.0'
66+
release = '2.3.dev0'
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
#endif
9393

9494
#define PYBIND11_VERSION_MAJOR 2
95-
#define PYBIND11_VERSION_MINOR 2
96-
#define PYBIND11_VERSION_PATCH 0
95+
#define PYBIND11_VERSION_MINOR 3
96+
#define PYBIND11_VERSION_PATCH dev0
9797

9898
/// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
9999
#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, 2, 0)
1+
version_info = (2, 3, 'dev0')
22
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)