[Python-checkins] r58922 - python/branches/release25-maint/Include/patchlevel.h
fred.drake
python-checkins at python.org
Fri Nov 9 17:53:20 CET 2007
Author: fred.drake
Date: Fri Nov 9 17:53:20 2007
New Revision: 58922
Modified:
python/branches/release25-maint/Include/patchlevel.h
Log:
when talking about an imminent 2.5.2c1, the build should identify itself
as being some form of 2.5.2 (this is admittedly a bit conservative);
we can make this 2.5.2c1 when making the release
Modified: python/branches/release25-maint/Include/patchlevel.h
==============================================================================
--- python/branches/release25-maint/Include/patchlevel.h (original)
+++ python/branches/release25-maint/Include/patchlevel.h Fri Nov 9 17:53:20 2007
@@ -21,12 +21,12 @@
/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION 2
#define PY_MINOR_VERSION 5
-#define PY_MICRO_VERSION 1
-#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
+#define PY_MICRO_VERSION 2
+#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL 0
/* Version as a string */
-#define PY_VERSION "2.5.1"
+#define PY_VERSION "2.5.2a0"
/* Subversion Revision number of this file (not of the repository) */
#define PY_PATCHLEVEL_REVISION "$Revision$"
More information about the Python-checkins
mailing list