Skip to content

Commit 1f6982a

Browse files
committed
Fix the version information to reflect that this is the maintenance
branch.
1 parent d37ddbc commit 1f6982a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Include/patchlevel.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
/* Version parsed out into numeric values */
2222
#define PY_MAJOR_VERSION 2
2323
#define PY_MINOR_VERSION 0
24-
#define PY_MICRO_VERSION 0
25-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
24+
#define PY_MICRO_VERSION 1
25+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
2626
#define PY_RELEASE_SERIAL 1
2727

2828
/* Version as a string */
29-
#define PY_VERSION "2.0"
29+
#define PY_VERSION "2.0.1a1"
3030

3131
/* Historic */
32-
#define PATCHLEVEL "2.0"
32+
#define PATCHLEVEL "2.0.1a1"
3333

3434
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
3535
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */

0 commit comments

Comments
 (0)