@@ -11,6 +11,34 @@ versioning. Please review the :ref:`ABI compatibility <abi_compatibility>`
1111documentation for details.
1212
1313
14+ Version 3.0.1 (Aug 28, 2026)
15+ ----------------------------
16+
17+ - Fixed an issue where the ``std::chrono::duration `` caster interpreted a
18+ Python float even when implicit conversion was not desired.
19+ (PR `#1420 <https://github.com/wjakob/nanobind/pull/1420 >`__).
20+
21+ - Minor tweak to the ``NB_SLOT_ALIAS `` macro so that ``clang-cl `` can compile
22+ nanobind 3.0.0 code on Windows. This compiler is now also tested by the CI.
23+ (PR `#1421 <https://github.com/wjakob/nanobind/pull/1421 >`__).
24+
25+ - Fixed two problems in the ``constexpr `` logic that processes function
26+ annotations. Bindings could cause OOB writes by declaring an incorrect number
27+ of ``nb::arg `` annotations. A nullary method with an implicit ``self ``
28+ annotation failed to compile. (PR `#1419
29+ <https://github.com/wjakob/nanobind/pull/1419> `__).
30+
31+ - Reverted a change from version 2.13.0 (PR `#1334
32+ <https://github.com/wjakob/nanobind/pull/1334> `__), where the stub generator
33+ stripped the prefix of the enclosing class and wrote the short name of a
34+ nested class. PyRight/mypy handle the qualified form, and need it to avoid
35+ ambiguities. (PR `#1422 <https://github.com/wjakob/nanobind/pull/1422 >`__).
36+
37+ - The package metadata now declares ``requires-python = ">=3.10" `` so that
38+ installers do not pick up an incompatible version. (Issue `#1424
39+ <https://github.com/wjakob/nanobind/issues/1424> `__, PR `#1425
40+ <https://github.com/wjakob/nanobind/pull/1425> `__).
41+
1442Version 3.0.0 (Aug 22, 2026)
1543----------------------------
1644
@@ -376,6 +404,10 @@ improvements:
376404
377405- Internal ABI version 22.
378406
407+ **Note **: The 3.0.0 release was yanked since it mistakenly still declared
408+ Python 3.9 compatibility. It is supserseded by the 3.0.1 patch release, which
409+ also includes several bugfixes.
410+
379411Version 2.15.0 (Aug 15, 2026)
380412-----------------------------
381413
0 commit comments