File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ 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.1 (TBA, not yet released)
10
+ ------------------------------
11
+
12
+ * Details to follow here
13
+
9
14
v2.6.0 (Oct 21, 2020)
10
15
---------------------
11
16
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ To release a new version of pybind11:
53
53
54
54
- Get back to work
55
55
- 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
57
57
``0.dev1 `` and increment MINOR).
58
58
- Update ``_version.py `` to match
59
59
- Add a plot for in-development updates in ``docs/changelog.rst ``.
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 0
14
+ #define PYBIND11_VERSION_PATCH 1 .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.0 "
11
+ __version__ = "2.6.1.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