From: Guido van Rossum Date: Mon, 14 Oct 2002 12:25:20 +0000 (+0000) Subject: Bump release version to 2.2.2 -- the final release is imminent. X-Git-Tag: v2.2.2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=233938495afbf99e0fd1c7fc95660b4b6c8a022c;p=thirdparty%2FPython%2Fcpython.git Bump release version to 2.2.2 -- the final release is imminent. --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index bfadf8a0f5b4..864a6e4a105e 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 2 #define PY_MICRO_VERSION 2 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.2.2b1+" +#define PY_VERSION "2.2.2" /* 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 >= ... */