From: Fred Drake Date: Thu, 18 Dec 2003 15:06:58 +0000 (+0000) Subject: Bump version number for release. X-Git-Tag: v2.3.3~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21c86b6151f74c9f3b2b55d0835d3a00ed365609;p=thirdparty%2FPython%2Fcpython.git Bump version number for release. --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index eb54432d5226..4293e5c14374 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 3 #define PY_MICRO_VERSION 3 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 2 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.3.3c2" +#define PY_VERSION "2.3.3" /* 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 >= ... */