diff options
author | Fred Drake <fdrake@acm.org> | 2004-06-09 14:56:12 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-06-09 14:56:12 +0000 |
commit | e66bb93df039c2a448f5e775d2c30db1dace53bb (patch) | |
tree | 803796ba3498ddc913d954f451e0d7f5e9094e63 /Include/patchlevel.h | |
parent | 4c8d256f304d77a64528612c595792492e508c29 (diff) | |
download | cpython-git-e66bb93df039c2a448f5e775d2c30db1dace53bb.tar.gz |
update version number since changes have been made since the release
Diffstat (limited to 'Include/patchlevel.h')
-rw-r--r-- | Include/patchlevel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index e96ce48032..f85146f484 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -21,12 +21,12 @@ /* Version parsed out into numeric values */ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 3 -#define PY_MICRO_VERSION 4 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_MICRO_VERSION 5 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA #define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.3.4" +#define PY_VERSION "2.3.5a0" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ |