[Python-checkins] python/dist/src/Include patchlevel.h, 2.83.2.1, 2.83.2.2

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Sun Dec 5 08:45:22 CET 2004


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5765

Modified Files:
      Tag: release24-maint
	patchlevel.h 
Log Message:
once we're post-release, we really need to bump the version number;
the documentation build gets the version number from here as well, and
the script that updates www.python.org/dev/doc/ needs to get an
updated version number


Index: patchlevel.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/patchlevel.h,v
retrieving revision 2.83.2.1
retrieving revision 2.83.2.2
diff -u -d -r2.83.2.1 -r2.83.2.2
--- patchlevel.h	30 Nov 2004 13:16:58 -0000	2.83.2.1
+++ patchlevel.h	5 Dec 2004 07:45:17 -0000	2.83.2.2
@@ -21,12 +21,12 @@
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION	2
 #define PY_MINOR_VERSION	4
-#define PY_MICRO_VERSION	0
-#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
+#define PY_MICRO_VERSION	1
+#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_ALPHA
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION		"2.4+"
+#define PY_VERSION		"2.4.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 >= ... */



More information about the Python-checkins mailing list