Skip to content

Commit

Permalink
v1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed May 31, 2023
1 parent 4513c49 commit ff790d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 1.3.1 (TBA)
-------------------
Version 1.3.1 (May 31, 2023)
----------------------------

* CMake build system improvements for stable ABI wheel generation.
(PR `#222 <https://github.com/wjakob/nanobind/pull/222>`__).
Expand Down
2 changes: 1 addition & 1 deletion include/nanobind/nanobind.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#define NB_VERSION_MAJOR 1
#define NB_VERSION_MINOR 3
#define NB_VERSION_PATCH 0
#define NB_VERSION_PATCH 1

// 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.3.0"
__version__ = "1.3.1"

__all__ = (
"__version__",
Expand Down

0 comments on commit ff790d9

Please sign in to comment.