Skip to content

Commit 86d3e9e

Browse files
committed
begin working towards a future v2.6.1 patch release
1 parent 59a2ac2 commit 86d3e9e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
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.6.1 (TBA, not yet released)
10+
------------------------------
11+
12+
* Details to follow here
13+
914
v2.6.0 (Oct 21, 2020)
1015
---------------------
1116

docs/release.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To release a new version of pybind11:
5353

5454
- Get back to work
5555
- Make sure you are on master, not somewhere else: ``git checkout master``
56-
- Update version macros in ``include/pybind11/common.h`` (set PATCH to
56+
- Update version macros in ``include/pybind11/detail/common.h`` (set PATCH to
5757
``0.dev1`` and increment MINOR).
5858
- Update ``_version.py`` to match
5959
- Add a plot for in-development updates in ``docs/changelog.rst``.

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 0
14+
#define PYBIND11_VERSION_PATCH 1.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.0"
11+
__version__ = "2.6.1.dev1"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

0 commit comments

Comments
 (0)