From b0e24d5b0ab0d518317d6b263a257ae72d4d29a2 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 24 Aug 2023 22:00:48 +0200 Subject: [PATCH] v1.5.2 release --- include/nanobind/nanobind.h | 2 +- src/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nanobind/nanobind.h b/include/nanobind/nanobind.h index 7c189da8..64d26e33 100644 --- a/include/nanobind/nanobind.h +++ b/include/nanobind/nanobind.h @@ -23,7 +23,7 @@ #define NB_VERSION_MAJOR 1 #define NB_VERSION_MINOR 5 -#define NB_VERSION_PATCH 1 +#define NB_VERSION_PATCH 2 // Core C++ headers that nanobind depends on #include diff --git a/src/__init__.py b/src/__init__.py index 2b18d0e2..8e0b0a4e 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.5.1" +__version__ = "1.5.2" __all__ = ( "__version__",