Skip to content

Commit 422990f

Browse files
authored
chore: get back to work (after v3.0.0 release) (#5747)
* Change version on master to v3.0.1a0 * Fix up PYBIND11_VERSION_PATCH
1 parent ed5057d commit 422990f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/pybind11/detail/common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
/* -- start version constants -- */
2020
#define PYBIND11_VERSION_MAJOR 3
2121
#define PYBIND11_VERSION_MINOR 0
22-
#define PYBIND11_VERSION_MICRO 0
22+
#define PYBIND11_VERSION_MICRO 1
2323
// ALPHA = 0xA, BETA = 0xB, GAMMA = 0xC (release candidate), FINAL = 0xF (stable release)
2424
// - The release level is set to "alpha" for development versions.
2525
// Use 0xA0 (LEVEL=0xA, SERIAL=0) for development versions.
2626
// - For stable releases, set the serial to 0.
27-
#define PYBIND11_VERSION_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
27+
#define PYBIND11_VERSION_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
2828
#define PYBIND11_VERSION_RELEASE_SERIAL 0
2929
// String version of (micro, release level, release serial), e.g.: 0a0, 0b1, 0rc1, 0
30-
#define PYBIND11_VERSION_PATCH 0
30+
#define PYBIND11_VERSION_PATCH 1a0
3131
/* -- end version constants -- */
3232

3333
#if !defined(Py_PACK_FULL_VERSION)

0 commit comments

Comments
 (0)