]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Bump version number.
authorMichael W. Hudson <mwh@python.net>
Wed, 27 Feb 2002 13:03:37 +0000 (13:03 +0000)
committerMichael W. Hudson <mwh@python.net>
Wed, 27 Feb 2002 13:03:37 +0000 (13:03 +0000)
I *think* this is the only place I need to do this.

There are also some "(c) 2001"s that should probably be turned into
"(c) 2001, 2002"s -- should this be done on the trunk too?

Include/patchlevel.h

index 12c89e0f7e2ce9e32bdcbf7e5ce9b391c2c7cf35..6b63efc18c34bc0597fe4aa4890351b8ace90a8d 100644 (file)
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION       2
 #define PY_MINOR_VERSION       2
-#define PY_MICRO_VERSION       0
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
-#define PY_RELEASE_SERIAL      0
+#define PY_MICRO_VERSION       1
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_ALPHA
+#define PY_RELEASE_SERIAL      1
 
 /* Version as a string */
-#define PY_VERSION             "2.2"
+#define PY_VERSION             "2.2.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 >= ... */