Skip to content

Commit

Permalink
v1.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Nov 2, 2023
1 parent 258ee09 commit 1a309ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ 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 1.8.0 (TBA)
Version 1.9.0 (TBA)
-------------------

* Nothing yet

Version 1.8.0 (Nov 2, 2023)
-------------------

* nanobind now considers two C++ ``std::type_info`` instances to be equal when
Expand Down
2 changes: 1 addition & 1 deletion include/nanobind/nanobind.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#endif

#define NB_VERSION_MAJOR 1
#define NB_VERSION_MINOR 7
#define NB_VERSION_MINOR 8
#define NB_VERSION_PATCH 0

// Core C++ headers that nanobind depends on
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.7.0"
__version__ = "1.8.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit 1a309ba

Please sign in to comment.