Skip to content

Commit b7c741b

Browse files
committed
docs: back to work after 2.6.1
1 parent f1abf5d commit b7c741b

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

docs/changelog.rst

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

9+
v2.6.2 (TBA, not yet released)
10+
------------------------------
11+
12+
* Details to follow here
13+
14+
915
v2.6.1 (Nov 11, 2020)
1016
---------------------
1117

docs/release.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ To release a new version of pybind11:
2525
- Update ``PYBIND11_VERSION_MAJOR`` etc. in
2626
``include/pybind11/detail/common.h``. PATCH should be a simple integer.
2727
- Update ``pybind11/_version.py`` (match above)
28-
- Ensure that all the information in ``setup.py`` is up-to-date.
28+
- Ensure that all the information in ``setup.cfg`` is up-to-date, like
29+
supported Python versions.
2930
- Add release date in ``docs/changelog.rst``.
3031
- ``git add`` and ``git commit``, ``git push``. **Ensure CI passes**. (If it
3132
fails due to a known flake issue, either ignore or restart CI.)
@@ -56,7 +57,7 @@ To release a new version of pybind11:
5657
- Update version macros in ``include/pybind11/detail/common.h`` (set PATCH to
5758
``0.dev1`` and increment MINOR).
5859
- Update ``_version.py`` to match
59-
- Add a plot for in-development updates in ``docs/changelog.rst``.
60+
- Add a spot for in-development updates in ``docs/changelog.rst``.
6061
- ``git add``, ``git commit``, ``git push``
6162

6263
If a version branch is updated, remember to set PATCH to ``1.dev1``.

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

0 commit comments

Comments
 (0)