From: Michael W. Hudson Date: Wed, 27 Feb 2002 13:03:37 +0000 (+0000) Subject: Bump version number. X-Git-Tag: v2.2.1c1~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a06a7fbc311ee299954de32d7ce9b66bc39ebff1;p=thirdparty%2FPython%2Fcpython.git 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? --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 12c89e0f7e2c..6b63efc18c34 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 >= ... */