Skip to content

Commit

Permalink
v2.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Dec 5, 2024
1 parent 86128b9 commit 0f9ce74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/nanobind/nanobind.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#endif

#define NB_VERSION_MAJOR 2
#define NB_VERSION_MINOR 3
#define NB_VERSION_MINOR 4
#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 <cstddef>
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.3.0dev1"
version = "2.4.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.3.0dev1"
__version__ = "2.4.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit 0f9ce74

Please sign in to comment.