File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ How to make a new release?
26
26
27
27
7. Push: ``git push `` and ``git push --tags ``
28
28
29
- 8. Run ``python setup.py bdist_wheel ``
29
+ 8. Run ``pipx run build ``
30
30
31
31
9. Upload: ``twine upload --repository nanobind <filename> ``
32
32
Original file line number Diff line number Diff line change 22
22
#endif
23
23
24
24
#define NB_VERSION_MAJOR 2
25
- #define NB_VERSION_MINOR 2
25
+ #define NB_VERSION_MINOR 3
26
26
#define NB_VERSION_PATCH 0
27
- #define NB_VERSION_DEV 0 // A value > 0 indicates a development release
27
+ #define NB_VERSION_DEV 1 // A value > 0 indicates a development release
28
28
29
29
// Core C++ headers that nanobind depends on
30
30
#include < cstdint>
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
5
5
[project ]
6
6
name = " nanobind"
7
- version = " 2.2.0 "
7
+ version = " 2.3.0dev1 "
8
8
description = " nanobind: tiny and efficient C++/Python bindings"
9
9
readme.content-type = " text/markdown"
10
10
readme.text = """
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def cmake_dir() -> str:
12
12
"Return the path to the nanobind CMake module directory."
13
13
return os .path .join (os .path .abspath (os .path .dirname (__file__ )), "cmake" )
14
14
15
- __version__ = "2.2.0 "
15
+ __version__ = "2.3.0dev1 "
16
16
17
17
__all__ = (
18
18
"__version__" ,
You can’t perform that action at this time.
0 commit comments