From 4a5b81b1b7ec91cfceb34bcc0fc49aa7f4503b81 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Tue, 26 Jan 2021 22:28:09 -0500 Subject: [PATCH] chore: get back to work --- docs/changelog.rst | 4 ++++ include/pybind11/detail/common.h | 2 +- pybind11/_version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 157b2960..62f0ac9b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,10 @@ Changelog Starting with version 1.8.0, pybind11 releases use a `semantic versioning `_ policy. +v2.6.3 (TBA, not yet released) +------------------------------ + +* Details to follow here v2.6.2 (Jan 26, 2021) --------------------- diff --git a/include/pybind11/detail/common.h b/include/pybind11/detail/common.h index de495e4f..dfcdbc23 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 2 +#define PYBIND11_VERSION_PATCH 3.dev #define PYBIND11_NAMESPACE_BEGIN(name) namespace name { #define PYBIND11_NAMESPACE_END(name) } diff --git a/pybind11/_version.py b/pybind11/_version.py index f8b795ee..e0da6a5e 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -8,5 +8,5 @@ def _to_int(s): return s -__version__ = "2.6.2" +__version__ = "2.6.3.dev" version_info = tuple(_to_int(s) for s in __version__.split("."))