diff options
author | Barry Warsaw <barry@python.org> | 2008-07-18 02:28:44 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2008-07-18 02:28:44 (GMT) |
commit | 4bd1cefca9e1e4925c25c8119790288b89e7a52d (patch) | |
tree | 59557ae90568632956d5273cac214cb7811bf103 | |
parent | cc3f6b4ad1727f2c82da12f4320d52ac77d0f22b (diff) | |
download | cpython-4bd1cefca9e1e4925c25c8119790288b89e7a52d.zip cpython-4bd1cefca9e1e4925c25c8119790288b89e7a52d.tar.gz cpython-4bd1cefca9e1e4925c25c8119790288b89e7a52d.tar.bz2 |
Bumping to 3.0b2v3.0b2
-rw-r--r-- | Include/patchlevel.h | 4 | ||||
-rw-r--r-- | Lib/distutils/__init__.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/idlever.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Misc/RPM/python-3.0.spec | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | RELNOTES | 13 |
7 files changed, 21 insertions, 8 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index b233271..f1bc45e 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -20,10 +20,10 @@ #define PY_MINOR_VERSION 0 #define PY_MICRO_VERSION 0 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_SERIAL 2 /* Version as a string */ -#define PY_VERSION "3.0b1+" +#define PY_VERSION "3.0b2" /*--end constants--*/ /* Subversion Revision number of this file (not of the repository) */ diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 54fc236..48bb005 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -20,5 +20,5 @@ __revision__ = "$Id$" # #--start constants-- -__version__ = "3.0b1" +__version__ = "3.0b2" #--end constants-- diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 43595af..eac348d 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1 @@ -IDLE_VERSION = "3.0b1" +IDLE_VERSION = "3.0b2" @@ -7,7 +7,7 @@ Python News What's new in Python 3.0b2? =========================== -*Release date: XX-XXX-2008* +*Release date: 17-Jul-2008* Core and Builtins ----------------- diff --git a/Misc/RPM/python-3.0.spec b/Misc/RPM/python-3.0.spec index c6fd1a6..30352b1 100644 --- a/Misc/RPM/python-3.0.spec +++ b/Misc/RPM/python-3.0.spec @@ -34,7 +34,7 @@ %define name python #--start constants-- -%define version 3.0b1 +%define version 3.0b2 %define libver 3.0 #--end constants-- %define release 1pydotorg @@ -1,4 +1,4 @@ -This is Python version 3.0 beta 1 +This is Python version 3.0 beta 2 ================================= For notes specific to this release, see RELNOTES in this directory. @@ -22,7 +22,7 @@ Release Schedule ---------------- The release plan is to have a series of alpha releases in 2007 and 2008, -beta releases in 2008, and a final release in September 2008. The alpha +beta releases in 2008, and a final release in October 2008. The alpha releases are primarily aimed at developers who want a sneak peek at the new langauge, especially those folks who plan to port their code to Python 3000. The hope is that by the time of the final release, many @@ -6,6 +6,19 @@ Release notes describe unfinished work in particular releases. Please report bugs to http://bugs.python.org/. +Version 3.0b2 - Release Date 17-Jul-2008 +---------------------------------------- + +Please search the bug tracker for critical issues in Python 3.0. + +The bsddb3 library is known to be in bad shape. The Python 2.6 version needs +to be ported to Python 3.0, but so far, no one has done this. + +There are several known deferred blockers (issues that will block the next +release). These include, but are not limited to, problems with 2to3, +multiprocessing, and bytearrays. + + Version 3.0b1 - Release Date 18-Jun-2008 ---------------------------------------- |