]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Prepare for final release.
authorGuido van Rossum <guido@python.org>
Tue, 13 Apr 1999 14:47:26 +0000 (14:47 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 13 Apr 1999 14:47:26 +0000 (14:47 +0000)
Include/patchlevel.h
README

index 5762112a98000448a34147dfbeeaa2a87fddbcd0..c7b78fd3182bbf1fea622516ef12e8aa461f972e 100644 (file)
@@ -46,19 +46,20 @@ PERFORMANCE OF THIS SOFTWARE.
 #define PY_RELEASE_LEVEL_BETA  0xB
 #define PY_RELEASE_LEVEL_GAMMA 0xC
 #define PY_RELEASE_LEVEL_FINAL 0xF     /* Serial should be 0 here */
+                                       /* Higher for patch releases */
 
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION       1
 #define PY_MINOR_VERSION       5
 #define PY_MICRO_VERSION       2
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL      1
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "1.5.2c1"
+#define PY_VERSION             "1.5.2"
 
 /* Historic */
-#define PATCHLEVEL             "1.5.2c1"
+#define PATCHLEVEL             "1.5.2"
 
 /* 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 >= ... */
diff --git a/README b/README
index c16a59aa7175c2972d4afe74341e64d94ab07196..511a0d9de65984a0303c31a92ad6847d1ed841de 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-This is Python version 1.5.2c1 -- released Apr 8, 1999
-======================================================
+This is Python version 1.5.2 -- released April 13, 1999
+=======================================================
 
 
 What's new in this release?