Skip to content

Commit

Permalink
begin work on the next version
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Oct 3, 2024
1 parent 784efa2 commit 353f19f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ How to make a new release?

7. Push: ``git push`` and ``git push --tags``

8. Run ``python setup.py bdist_wheel``
8. Run ``pipx run build``

9. Upload: ``twine upload --repository nanobind <filename>``

Expand Down
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 2
#define NB_VERSION_MINOR 3
#define NB_VERSION_PATCH 0
#define NB_VERSION_DEV 0 // A value > 0 indicates a development release
#define NB_VERSION_DEV 1 // 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.0"
version = "2.3.0dev1"
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.0"
__version__ = "2.3.0dev1"

__all__ = (
"__version__",
Expand Down

0 comments on commit 353f19f

Please sign in to comment.