From 80d452484c5409444b0ec19383faa84bb7a4d351 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Tue, 15 Oct 2019 01:57:24 +0200 Subject: [PATCH] v2.4.3 release --- docs/changelog.rst | 6 ++++++ docs/conf.py | 2 +- include/pybind11/detail/common.h | 2 +- pybind11/_version.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 1ac83ec3e..d65c2d800 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,12 @@ Changelog Starting with version 1.8.0, pybind11 releases use a `semantic versioning `_ policy. +v2.4.3 (Oct 15, 2019) +----------------------------------------------------- + +* Adapt pybind11 to a C API convention change in Python 3.8. `#1950 + `_. + v2.4.2 (Sep 21, 2019) ----------------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index dfb20df4a..c43854629 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ author = 'Wenzel Jakob' # The short X.Y version. version = '2.4' # The full version, including alpha/beta/rc tags. -release = '2.4.dev3' +release = '2.4.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/include/pybind11/detail/common.h b/include/pybind11/detail/common.h index 3e4549490..6da547060 100644 --- a/include/pybind11/detail/common.h +++ b/include/pybind11/detail/common.h @@ -94,7 +94,7 @@ #define PYBIND11_VERSION_MAJOR 2 #define PYBIND11_VERSION_MINOR 4 -#define PYBIND11_VERSION_PATCH dev3 +#define PYBIND11_VERSION_PATCH 3 /// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode #if defined(_MSC_VER) diff --git a/pybind11/_version.py b/pybind11/_version.py index 85c7f94e2..2709cc556 100644 --- a/pybind11/_version.py +++ b/pybind11/_version.py @@ -1,2 +1,2 @@ -version_info = (2, 4, 'dev3') +version_info = (2, 4, 3) __version__ = '.'.join(map(str, version_info))