Skip to content

Commit ba9f919

Browse files
committed
chore: get back to work after 2.8.0
1 parent 97976c1 commit ba9f919

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-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+
10+
IN DEVELOPMENT
11+
--------------
12+
13+
14+
915
v2.8.0 (Oct 4, 2021)
1016
--------------------
1117

docs/release.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ To release a new version of pybind11:
2727
``include/pybind11/detail/common.h``. PATCH should be a simple integer.
2828
- Update the version HEX just below, as well.
2929
- Update ``pybind11/_version.py`` (match above)
30+
- Run ``nox -s tests_packaging``` to ensure this was done correctly.
3031
- Ensure that all the information in ``setup.cfg`` is up-to-date, like
3132
supported Python versions.
3233
- Add release date in ``docs/changelog.rst``.
@@ -64,6 +65,7 @@ To release a new version of pybind11:
6465
- Update version macros in ``include/pybind11/detail/common.h`` (set PATCH to
6566
``0.dev1`` and increment MINOR).
6667
- Update ``_version.py`` to match
68+
- Run ``nox -s tests_packaging``` to ensure this was done correctly.
6769
- Add a spot for in-development updates in ``docs/changelog.rst``.
6870
- ``git add``, ``git commit``, ``git push``
6971

include/pybind11/detail/common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
#pragma once
1111

1212
#define PYBIND11_VERSION_MAJOR 2
13-
#define PYBIND11_VERSION_MINOR 8
14-
#define PYBIND11_VERSION_PATCH 0
13+
#define PYBIND11_VERSION_MINOR 9
14+
#define PYBIND11_VERSION_PATCH 0.dev1
1515

1616
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
1717
// Additional convention: 0xD = dev
18-
#define PYBIND11_VERSION_HEX 0x02080000
18+
#define PYBIND11_VERSION_HEX 0x020900D1
1919

2020
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
2121
#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.8.0"
11+
__version__ = "2.9.0.dev1"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

0 commit comments

Comments
 (0)