Skip to content

Commit 9b3afa9

Browse files
committed
v2.6.1 release
1 parent a1c5e32 commit 9b3afa9

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

docs/changelog.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ case, both modules must use the same nanobind ABI version, or they will be
1515
isolated from each other. Releases that don't explicitly mention an ABI version
1616
below inherit that of the preceding release.
1717

18-
Version 2.6.0 (Mar 28, 2025)
18+
Version 2.6.1 (Mar 28, 2025)
1919
----------------------------
2020

2121
- nanobind assigns an ABI tag to compiled extensions and uses it to isolate
@@ -44,6 +44,11 @@ Version 2.6.0 (Mar 28, 2025)
4444
<https://github.com/wjakob/nanobind/pull/978>`__, commit `1595d2
4545
<https://github.com/wjakob/nanobind/commit/1595d2d40717d65835ed984b06cfc2b4da0e4858>`__).
4646

47+
Version 2.6.0 (Mar 28, 2025)
48+
----------------------------
49+
50+
- This release was yanked due to a regression.
51+
4752
Version 2.5.0 (Feb 2, 2025)
4853
---------------------------
4954

include/nanobind/nanobind.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
#endif
2323

2424
#define NB_VERSION_MAJOR 2
25-
#define NB_VERSION_MINOR 7
26-
#define NB_VERSION_PATCH 0
27-
#define NB_VERSION_DEV 1 // A value > 0 indicates a development release
25+
#define NB_VERSION_MINOR 6
26+
#define NB_VERSION_PATCH 1
27+
#define NB_VERSION_DEV 0 // 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.7.0dev1"
7+
version = "2.6.1"
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.7.0dev1"
19+
__version__ = "2.6.1"
2020

2121
__all__ = (
2222
"__version__",

0 commit comments

Comments
 (0)