chore: bump to 2.6.0rc3

This commit is contained in:
Henry Schreiner 2020-10-16 17:34:53 -04:00
parent 064362fbb7
commit c16da99309
3 changed files with 8 additions and 6 deletions

View File

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

View File

@ -11,7 +11,7 @@
#define PYBIND11_VERSION_MAJOR 2 #define PYBIND11_VERSION_MAJOR 2
#define PYBIND11_VERSION_MINOR 6 #define PYBIND11_VERSION_MINOR 6
#define PYBIND11_VERSION_PATCH 0rc2 #define PYBIND11_VERSION_PATCH 0rc3
#define PYBIND11_NAMESPACE_BEGIN(name) namespace name { #define PYBIND11_NAMESPACE_BEGIN(name) namespace name {
#define PYBIND11_NAMESPACE_END(name) } #define PYBIND11_NAMESPACE_END(name) }

View File

@ -8,5 +8,5 @@ def _to_int(s):
return s return s
__version__ = "2.6.0rc2" __version__ = "2.6.0rc3"
version_info = tuple(_to_int(s) for s in __version__.split(".")) version_info = tuple(_to_int(s) for s in __version__.split("."))