From bcc33b7c4a279b1aa720d98fb7acbe5e1c6e14b9 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Fri, 6 Dec 2024 08:08:26 +0900 Subject: [PATCH] begin working on the next version --- include/nanobind/nanobind.h | 4 ++-- pyproject.toml | 2 +- src/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/nanobind/nanobind.h b/include/nanobind/nanobind.h index 34c5e76b..a6fa5248 100644 --- a/include/nanobind/nanobind.h +++ b/include/nanobind/nanobind.h @@ -22,9 +22,9 @@ #endif #define NB_VERSION_MAJOR 2 -#define NB_VERSION_MINOR 4 +#define NB_VERSION_MINOR 5 #define NB_VERSION_PATCH 0 -#define NB_VERSION_DEV 0 // A value > 0 indicates a development release +#define NB_VERSION_DEV 1 // A value > 0 indicates a development release // Core C++ headers that nanobind depends on #include diff --git a/pyproject.toml b/pyproject.toml index a30fde49..89bdca86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "nanobind" -version = "2.4.0" +version = "2.5.0dev1" description = "nanobind: tiny and efficient C++/Python bindings" readme.content-type = "text/markdown" readme.text = """ diff --git a/src/__init__.py b/src/__init__.py index 3f8ad890..e50d9ba4 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__ = "2.4.0" +__version__ = "2.5.0dev1" __all__ = ( "__version__",