diff --git a/docs/release.rst b/docs/release.rst index b5b197f0..e74add7d 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -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 `` diff --git a/include/nanobind/nanobind.h b/include/nanobind/nanobind.h index d245a0fd..57be68f2 100644 --- a/include/nanobind/nanobind.h +++ b/include/nanobind/nanobind.h @@ -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 diff --git a/pyproject.toml b/pyproject.toml index c8cff997..fa34f6f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = """ diff --git a/src/__init__.py b/src/__init__.py index 5933c5ef..7fd5ba61 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -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__",