Skip to content

Commit 784efa2

Browse files
committed
v2.2.0 release
1 parent c7bebee commit 784efa2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/changelog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ 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.2.0 (TBA)
19-
-------------------
18+
Version 2.2.0 (October 3, 2014)
19+
-------------------------------
2020

2121
- nanobind can now target `free-threaded Python
2222
<https://py-free-threading.github.io>`__, which replaces the `Global

include/nanobind/nanobind.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define NB_VERSION_MAJOR 2
2525
#define NB_VERSION_MINOR 2
2626
#define NB_VERSION_PATCH 0
27-
#define NB_VERSION_DEV 1 // A value > 0 indicates a development release
27+
#define NB_VERSION_DEV 0 // A value > 0 indicates a development release
2828

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

pyproject.toml

+1-1
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.2.0dev1"
7+
version = "2.2.0"
88
description = "nanobind: tiny and efficient C++/Python bindings"
99
readme.content-type = "text/markdown"
1010
readme.text = """

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def cmake_dir() -> str:
1212
"Return the path to the nanobind CMake module directory."
1313
return os.path.join(os.path.abspath(os.path.dirname(__file__)), "cmake")
1414

15-
__version__ = "2.2.0dev1"
15+
__version__ = "2.2.0"
1616

1717
__all__ = (
1818
"__version__",

0 commit comments

Comments
 (0)