File tree 4 files changed +12
-4
lines changed
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ Changelog
6
6
Starting with version 1.8.0, pybind11 releases use a `semantic versioning
7
7
<http://semver.org> `_ policy.
8
8
9
+
10
+ IN DEVELOPMENT
11
+ --------------
12
+
13
+
14
+
9
15
v2.8.0 (Oct 4, 2021)
10
16
--------------------
11
17
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ To release a new version of pybind11:
27
27
``include/pybind11/detail/common.h ``. PATCH should be a simple integer.
28
28
- Update the version HEX just below, as well.
29
29
- Update ``pybind11/_version.py `` (match above)
30
+ - Run ``nox -s tests_packaging` `` to ensure this was done correctly.
30
31
- Ensure that all the information in ``setup.cfg `` is up-to-date, like
31
32
supported Python versions.
32
33
- Add release date in ``docs/changelog.rst ``.
@@ -64,6 +65,7 @@ To release a new version of pybind11:
64
65
- Update version macros in ``include/pybind11/detail/common.h `` (set PATCH to
65
66
``0.dev1 `` and increment MINOR).
66
67
- Update ``_version.py `` to match
68
+ - Run ``nox -s tests_packaging` `` to ensure this was done correctly.
67
69
- Add a spot for in-development updates in ``docs/changelog.rst ``.
68
70
- ``git add ``, ``git commit ``, ``git push ``
69
71
Original file line number Diff line number Diff line change 10
10
#pragma once
11
11
12
12
#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
15
15
16
16
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
17
17
// Additional convention: 0xD = dev
18
- #define PYBIND11_VERSION_HEX 0x02080000
18
+ #define PYBIND11_VERSION_HEX 0x020900D1
19
19
20
20
#define PYBIND11_NAMESPACE_BEGIN (name ) namespace name {
21
21
#define PYBIND11_NAMESPACE_END (name ) }
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ def _to_int(s):
8
8
return s
9
9
10
10
11
- __version__ = "2.8.0 "
11
+ __version__ = "2.9.0.dev1 "
12
12
version_info = tuple (_to_int (s ) for s in __version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments