Skip to content

Commit c16da99

Browse files
committed
chore: bump to 2.6.0rc3
1 parent 064362f commit c16da99

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

docs/release.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ To release a new version of pybind11:
3131
fails due to a known flake issue, either ignore or restart CI.)
3232
- Add a release branch if this is a new minor version
3333
- ``git checkout -b vX.Y``, ``git push -u origin vX.Y``
34-
- Update tags
34+
- Update tags (optional; if you skip this, the GitHub release makes a
35+
non-annotated tag for you)
3536
- ``git tag -a vX.Y.Z -m 'vX.Y.Z release'``.
3637
- ``git push --tags``.
3738
- Update stable
@@ -43,9 +44,10 @@ To release a new version of pybind11:
4344
(Note: if you do not use an existing tag, this creates a new lightweight tag
4445
for you, so you could skip the above step).
4546
- GUI method: click "Create a new release" on the far right, fill in the tag
46-
name, fill in a release name like "Version X.Y.Z", and optionally
47-
copy-and-paste the changelog into the description (processed as markdown by
48-
Pandoc). Check "pre-release" if this is a beta/RC.
47+
name (if you didn't tag above, it will be made here), fill in a release
48+
name like "Version X.Y.Z", and optionally copy-and-paste the changelog into
49+
the description (processed as markdown by Pandoc). Check "pre-release" if
50+
this is a beta/RC.
4951
- CLI method: with ``gh`` installed, run ``gh release create vX.Y.Z -t "Version X.Y.Z"``
5052
If this is a pre-release, add ``-p``.
5153

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 0rc2
14+
#define PYBIND11_VERSION_PATCH 0rc3
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.0rc2"
11+
__version__ = "2.6.0rc3"
1212
version_info = tuple(_to_int(s) for s in __version__.split("."))

0 commit comments

Comments
 (0)