]> granicus.if.org Git - python/commitdiff
Get ready for releasing 3.0a2.
authorGuido van Rossum <guido@python.org>
Thu, 6 Dec 2007 05:07:41 +0000 (05:07 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 6 Dec 2007 05:07:41 +0000 (05:07 +0000)
(Next: update the whatsnew docs.)

Include/patchlevel.h
Misc/NEWS
README
RELNOTES

index 53554aa2598d0a3ea7c9d88686b8b4160213a1bd..89874459da2f373ba29dd315236b9db780c77b86 100644 (file)
 #define PY_MINOR_VERSION       0
 #define PY_MICRO_VERSION       0
 #define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL      1
+#define PY_RELEASE_SERIAL      2
 
 /* Version as a string */
-#define PY_VERSION             "3.0a1+"
+#define PY_VERSION             "3.0a2"
 
 /* Subversion Revision number of this file (not of the repository) */
 #define PY_PATCHLEVEL_REVISION  "$Revision$"
index c041d106b21748d465f0fbb604a10c625372bba8..b3905c6ac3c26d0c8468e80f16a167c405b08a76 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6,7 +6,9 @@ Python News
 
 What's New in Python 3.0a2?
 
-*Unreleased*
+*Release date: 07-Dec-2007*
+
+(Note: this list is incomplete.)
 
 Core and Builtins
 -----------------
diff --git a/README b/README
index 0f372351ee018bc40dd05511e957f598272ce361..6aec2a495ed2cb0326c059e3f412ddcb09351bd4 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This is Python version 3.0 alpha 1
+This is Python version 3.0 alpha 2
 ==================================
 
 For notes specific to this release, see RELNOTES in this directory.
@@ -11,8 +11,8 @@ have changed considerably, and a lot of deprecated features have
 finally been removed.
 
 This is an ongoing project; the cleanup isn't expected to be complete
-until 2008.  In particular there are plans to reorganize the standard
-library namespace.
+until some time in 2008.  In particular there are plans to reorganize
+the standard library namespace.
 
 
 Release Schedule
@@ -55,6 +55,19 @@ We'll eventually have a comprehensive overview of the changes in a
 "What's New in Python 3.0" document.  Please help write it!
 
 
+What's New Since 3.0a1
+----------------------
+
+Undoubtedly the biggest change is in the bytes type: 'bytes' is now
+immutable, and there is a new mutable bytes type 'bytearray'.  These
+two types are interoperable in every way.  For more info on this
+issue, read PEP 3137.
+
+For a more detailed change log, read Misc/NEWS (though this file, too,
+is incomplete, and also doesn't list anything merged in from the 2.6
+release under development).
+
+
 Converting From Python 2.x to 3.0
 ---------------------------------
 
index c23f82021ff96d601ec4d483f5966afadcd5db72..2526bc5eb0434daf9348acd332e5e3b52ad29775 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -5,6 +5,15 @@ Release notes describe unfinished work in particular releases.
 
 Please report bugs to http://bugs.python.org/.
 
+Version 3.0a2 - Release Date 07-Dec-2007
+----------------------------------------
+
+* SSL support is back!  However, the SSL code appears to be leaking
+  quite a bit.
+
+* Otherwise, the 3.0a1 release notes still apply, except hashlib no
+  longer requires openssl.
+
 Version 3.0a1 - Release Date 31-Aug-2007
 ----------------------------------------