From 1a309ba444a47e081dc6213d72345a2fbbd20795 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 2 Nov 2023 12:16:59 +0100 Subject: [PATCH] v1.8.0 release --- docs/changelog.rst | 7 ++++++- include/nanobind/nanobind.h | 2 +- src/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 018dde7f..76e30137 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -15,7 +15,12 @@ case, both modules must use the same nanobind ABI version, or they will be isolated from each other. Releases that don't explicitly mention an ABI version below inherit that of the preceding release. -Version 1.8.0 (TBA) +Version 1.9.0 (TBA) +------------------- + +* Nothing yet + +Version 1.8.0 (Nov 2, 2023) ------------------- * nanobind now considers two C++ ``std::type_info`` instances to be equal when diff --git a/include/nanobind/nanobind.h b/include/nanobind/nanobind.h index e5e42fc0..b4c3673c 100644 --- a/include/nanobind/nanobind.h +++ b/include/nanobind/nanobind.h @@ -22,7 +22,7 @@ #endif #define NB_VERSION_MAJOR 1 -#define NB_VERSION_MINOR 7 +#define NB_VERSION_MINOR 8 #define NB_VERSION_PATCH 0 // Core C++ headers that nanobind depends on diff --git a/src/__init__.py b/src/__init__.py index 3d918094..fd1ca76f 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -12,7 +12,7 @@ def cmake_dir() -> str: "Return the path to the nanobind CMake module directory." return os.path.join(os.path.abspath(os.path.dirname(__file__)), "cmake") -__version__ = "1.7.0" +__version__ = "1.8.0" __all__ = ( "__version__",