Skip to content

Commit 30bbda1

Browse files
committed
begin working on next version
1 parent 116e098 commit 30bbda1

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ This is a patch release to fix an issue in the new recursive stub generation fea
2626
submodules. However, the implemented submodule test was far too conservative
2727
and interpreted any imported module (e.g. ``import os``) as a submodule. The
2828
patch release fixes this.
29+
(commit `a65e1b
30+
<https://github.com/wjakob/nanobind/commit/a65e1b36ec0670e7c8d7a3bacfa5cff425fe92fe>`__).
2931

3032
Version 2.9.1 (Sep 4, 2025)
3133
---------------------------

include/nanobind/nanobind.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
#define NB_VERSION_MAJOR 2
2525
#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
2828

2929
// Core C++ headers that nanobind depends on
3030
#include <cstddef>

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "nanobind"
7-
version = "2.9.2"
7+
version = "2.9.3-dev1"
88
description = "nanobind: tiny and efficient C++/Python bindings"
99
readme.content-type = "text/markdown"
1010
readme.text = """

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def cmake_dir() -> str:
1616
"Return the path to the nanobind CMake module directory."
1717
return os.path.join(os.path.abspath(os.path.dirname(__file__)), "cmake")
1818

19-
__version__ = "2.9.2"
19+
__version__ = "2.9.3-dev1"
2020

2121
__all__ = (
2222
"__version__",

0 commit comments

Comments
 (0)