Skip to content

Commit

Permalink
v2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Oct 3, 2024
1 parent c7bebee commit 784efa2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ case, both modules must use the same nanobind ABI version, or they will be
isolated from each other. Releases that don't explicitly mention an ABI version
below inherit that of the preceding release.

Version 2.2.0 (TBA)
-------------------
Version 2.2.0 (October 3, 2014)
-------------------------------

- nanobind can now target `free-threaded Python
<https://py-free-threading.github.io>`__, which replaces the `Global
Expand Down
2 changes: 1 addition & 1 deletion include/nanobind/nanobind.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define NB_VERSION_MAJOR 2
#define NB_VERSION_MINOR 2
#define NB_VERSION_PATCH 0
#define NB_VERSION_DEV 1 // A value > 0 indicates a development release
#define NB_VERSION_DEV 0 // A value > 0 indicates a development release

// Core C++ headers that nanobind depends on
#include <cstdint>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "nanobind"
version = "2.2.0dev1"
version = "2.2.0"
description = "nanobind: tiny and efficient C++/Python bindings"
readme.content-type = "text/markdown"
readme.text = """
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def cmake_dir() -> str:
"Return the path to the nanobind CMake module directory."
return os.path.join(os.path.abspath(os.path.dirname(__file__)), "cmake")

__version__ = "2.2.0dev1"
__version__ = "2.2.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit 784efa2

Please sign in to comment.