From c16da993094988141101ac4d96a9b2c92f9ac714 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 16 Oct 2020 17:34:53 -0400 Subject: [PATCH] chore: bump to 2.6.0rc3 --- docs/release.rst | 10 ++++++---- include/pybind11/detail/common.h | 2 +- pybind11/_version.py | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 9c3d945d4f..f73c4ac963 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -31,7 +31,8 @@ To release a new version of pybind11: fails due to a known flake issue, either ignore or restart CI.) - Add a release branch if this is a new minor version - ``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 push --tags``. - 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 for you, so you could skip the above step). - 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 - copy-and-paste the changelog into the description (processed as markdown by - Pandoc). Check "pre-release" if this is a beta/RC. + name (if you didn't tag above, it will be made here), fill in a release + name like "Version X.Y.Z", and optionally copy-and-paste the changelog into + 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"`` If this is a pre-release, add ``-p``. diff --git a/include/pybind11/detail/common.h b/include/pybind11/detail/common.h index 2a5501b59b..93f7f0aa37 100644 --- a/include/pybind11/detail/common.h +++ b/include/pybind11/detail/common.h @@ -11,7 +11,7 @@ #define PYBIND11_VERSION_MAJOR 2 #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_END(name) } diff --git a/pybind11/_version.py b/pybind11/_version.py index 22c09e3d96..4bf507807b 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -8,5 +8,5 @@ def _to_int(s): return s -__version__ = "2.6.0rc2" +__version__ = "2.6.0rc3" version_info = tuple(_to_int(s) for s in __version__.split("."))