From: Fred Drake Date: Tue, 11 May 2004 15:21:20 +0000 (+0000) Subject: update the version information in preparation for release X-Git-Tag: v2.3.4c1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1ba47aa66d773ee0ddeb57debe537dbdd9a96a1;p=thirdparty%2FPython%2Fcpython.git update the version information in preparation for release (the documentation tools use this) --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 4293e5c14374..d1db3c51bed8 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 3 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL -#define PY_RELEASE_SERIAL 0 +#define PY_MICRO_VERSION 4 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA +#define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.3.3" +#define PY_VERSION "2.3.4c1" /* 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 >= ... */