File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-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
+ v2.6.2 (TBA, not yet released)
10
+ ------------------------------
11
+
12
+ * Details to follow here
13
+
14
+
9
15
v2.6.1 (Nov 11, 2020)
10
16
---------------------
11
17
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ To release a new version of pybind11:
25
25
- Update ``PYBIND11_VERSION_MAJOR `` etc. in
26
26
``include/pybind11/detail/common.h ``. PATCH should be a simple integer.
27
27
- 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.
29
30
- Add release date in ``docs/changelog.rst ``.
30
31
- ``git add `` and ``git commit ``, ``git push ``. **Ensure CI passes **. (If it
31
32
fails due to a known flake issue, either ignore or restart CI.)
@@ -56,7 +57,7 @@ To release a new version of pybind11:
56
57
- Update version macros in ``include/pybind11/detail/common.h `` (set PATCH to
57
58
``0.dev1 `` and increment MINOR).
58
59
- 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 ``.
60
61
- ``git add ``, ``git commit ``, ``git push ``
61
62
62
63
If a version branch is updated, remember to set PATCH to ``1.dev1 ``.
Original file line number Diff line number Diff line change 11
11
12
12
#define PYBIND11_VERSION_MAJOR 2
13
13
#define PYBIND11_VERSION_MINOR 6
14
- #define PYBIND11_VERSION_PATCH 1
14
+ #define PYBIND11_VERSION_PATCH 2 .dev1
15
15
16
16
#define PYBIND11_NAMESPACE_BEGIN (name ) namespace name {
17
17
#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.6.1 "
11
+ __version__ = "2.6.2.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