File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ This is a patch release to fix an issue in the new recursive stub generation fea
26
26
submodules. However, the implemented submodule test was far too conservative
27
27
and interpreted any imported module (e.g. ``import os ``) as a submodule. The
28
28
patch release fixes this.
29
+ (commit `a65e1b
30
+ <https://github.com/wjakob/nanobind/commit/a65e1b36ec0670e7c8d7a3bacfa5cff425fe92fe> `__).
29
31
30
32
Version 2.9.1 (Sep 4, 2025)
31
33
---------------------------
Original file line number Diff line number Diff line change 23
23
24
24
#define NB_VERSION_MAJOR 2
25
25
#define NB_VERSION_MINOR 9
26
- #define NB_VERSION_PATCH 2
27
- #define NB_VERSION_DEV 0 // A value > 0 indicates a development release
26
+ #define NB_VERSION_PATCH 3
27
+ #define NB_VERSION_DEV 1 // A value > 0 indicates a development release
28
28
29
29
// Core C++ headers that nanobind depends on
30
30
#include < cstddef>
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
5
5
[project ]
6
6
name = " nanobind"
7
- version = " 2.9.2 "
7
+ version = " 2.9.3-dev1 "
8
8
description = " nanobind: tiny and efficient C++/Python bindings"
9
9
readme.content-type = " text/markdown"
10
10
readme.text = """
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def cmake_dir() -> str:
16
16
"Return the path to the nanobind CMake module directory."
17
17
return os .path .join (os .path .abspath (os .path .dirname (__file__ )), "cmake" )
18
18
19
- __version__ = "2.9.2 "
19
+ __version__ = "2.9.3-dev1 "
20
20
21
21
__all__ = (
22
22
"__version__" ,
You can’t perform that action at this time.
0 commit comments