Skip to content

Commit

Permalink
v2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed May 23, 2024
1 parent 16a48d2 commit 8d7f1ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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.0.0 (TBA)
-------------------
Version 2.0.0 (May 23, 2024)
----------------------------

The 2.0.0 release of nanobind is entirely dedicated to *types* [#f1]_! The
project has always advertised seamless Python ↔ C++ interoperability, and this
Expand Down
6 changes: 3 additions & 3 deletions include/nanobind/nanobind.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
# pragma warning(disable: 4251) // [..] needs to have a dll-interface to be used by clients of class [..]
#endif

#define NB_VERSION_MAJOR 1
#define NB_VERSION_MINOR 9
#define NB_VERSION_PATCH 2
#define NB_VERSION_MAJOR 2
#define NB_VERSION_MINOR 0
#define NB_VERSION_PATCH 0

// Core C++ headers that nanobind depends on
#include <cstdint>
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__ = "1.9.2"
__version__ = "2.0.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit 8d7f1ee

Please sign in to comment.