]> granicus.if.org Git - python/commitdiff
Bump version to 2.0b1.
authorGuido van Rossum <guido@python.org>
Thu, 29 Jun 2000 22:29:24 +0000 (22:29 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 29 Jun 2000 22:29:24 +0000 (22:29 +0000)
Include/patchlevel.h

index 64131158ff35560966b8f07020c93396906ac426..d2b26c9027c1b152c5c413af72fda1dec745a34a 100644 (file)
@@ -49,17 +49,17 @@ PERFORMANCE OF THIS SOFTWARE.
                                        /* Higher for patch releases */
 
 /* Version parsed out into numeric values */
-#define PY_MAJOR_VERSION       1
-#define PY_MINOR_VERSION       6
+#define PY_MAJOR_VERSION       2
+#define PY_MINOR_VERSION       0
 #define PY_MICRO_VERSION       0
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL      2
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_BETA
+#define PY_RELEASE_SERIAL      1
 
 /* Version as a string */
-#define PY_VERSION             "1.6a2"
+#define PY_VERSION             "2.0b1"
 
 /* Historic */
-#define PATCHLEVEL             "1.6a2"
+#define PATCHLEVEL             "2.0b1"
 
 /* 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 >= ... */