diff options
author | Michael W. Hudson <mwh@python.net> | 2002-02-27 13:03:37 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-02-27 13:03:37 (GMT) |
commit | a06a7fbc311ee299954de32d7ce9b66bc39ebff1 (patch) | |
tree | 2e9bb185e3acf711e5068e4843ad2c146652d626 /Include | |
parent | 2e41bfbb84c9dc70adae44a35eb3c20b00056932 (diff) | |
download | cpython-a06a7fbc311ee299954de32d7ce9b66bc39ebff1.zip cpython-a06a7fbc311ee299954de32d7ce9b66bc39ebff1.tar.gz cpython-a06a7fbc311ee299954de32d7ce9b66bc39ebff1.tar.bz2 |
Bump version number.
I *think* this is the only place I need to do this.
There are also some "(c) 2001"s that should probably be turned into
"(c) 2001, 2002"s -- should this be done on the trunk too?
Diffstat (limited to 'Include')
-rw-r--r-- | Include/patchlevel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 12c89e0..6b63efc 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 2 -#define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL -#define PY_RELEASE_SERIAL 0 +#define PY_MICRO_VERSION 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA +#define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.2" +#define PY_VERSION "2.2.1a0" /* 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 >= ... */ |