[Python-3000-checkins] r64395 - in python/branches/py3k: Include/patchlevel.h Lib/distutils/__init__.py Lib/idlelib/idlever.py Misc/NEWS Misc/RPM/python-3.0.spec README RELNOTES

barry.warsaw python-3000-checkins at python.org
Thu Jun 19 02:35:43 CEST 2008


Author: barry.warsaw
Date: Thu Jun 19 02:35:43 2008
New Revision: 64395

Log:
Bump to 3.0b1


Modified:
   python/branches/py3k/Include/patchlevel.h
   python/branches/py3k/Lib/distutils/__init__.py
   python/branches/py3k/Lib/idlelib/idlever.py
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/Misc/RPM/python-3.0.spec
   python/branches/py3k/README
   python/branches/py3k/RELNOTES

Modified: python/branches/py3k/Include/patchlevel.h
==============================================================================
--- python/branches/py3k/Include/patchlevel.h	(original)
+++ python/branches/py3k/Include/patchlevel.h	Thu Jun 19 02:35:43 2008
@@ -19,11 +19,11 @@
 #define PY_MAJOR_VERSION	3
 #define PY_MINOR_VERSION	0
 #define PY_MICRO_VERSION	0
-#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL	5
+#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_BETA
+#define PY_RELEASE_SERIAL	1
 
 /* Version as a string */
-#define PY_VERSION      	"3.0a5+"
+#define PY_VERSION      	"3.0b1"
 /*--end constants--*/
 
 /* Subversion Revision number of this file (not of the repository) */

Modified: python/branches/py3k/Lib/distutils/__init__.py
==============================================================================
--- python/branches/py3k/Lib/distutils/__init__.py	(original)
+++ python/branches/py3k/Lib/distutils/__init__.py	Thu Jun 19 02:35:43 2008
@@ -20,5 +20,5 @@
 #
 
 #--start constants--
-__version__ = "3.0a5"
+__version__ = "3.0b1"
 #--end constants--

Modified: python/branches/py3k/Lib/idlelib/idlever.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/idlever.py	(original)
+++ python/branches/py3k/Lib/idlelib/idlever.py	Thu Jun 19 02:35:43 2008
@@ -1 +1 @@
-IDLE_VERSION = "3.0a5"
+IDLE_VERSION = "3.0b1"

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Thu Jun 19 02:35:43 2008
@@ -7,7 +7,7 @@
 What's new in Python 3.0b1?
 ===========================
 
-*Release date: XX-June-2008*
+*Release date: 18-Jun-2008*
 
 Core and Builtins
 -----------------

Modified: python/branches/py3k/Misc/RPM/python-3.0.spec
==============================================================================
--- python/branches/py3k/Misc/RPM/python-3.0.spec	(original)
+++ python/branches/py3k/Misc/RPM/python-3.0.spec	Thu Jun 19 02:35:43 2008
@@ -34,7 +34,7 @@
 
 %define name python
 #--start constants--
-%define version 3.0a5
+%define version 3.0b1
 %define libver 3.0
 #--end constants--
 %define release 1pydotorg

Modified: python/branches/py3k/README
==============================================================================
--- python/branches/py3k/README	(original)
+++ python/branches/py3k/README	Thu Jun 19 02:35:43 2008
@@ -1,5 +1,5 @@
-This is Python version 3.0 alpha 5
-==================================
+This is Python version 3.0 beta 1
+=================================
 
 For notes specific to this release, see RELNOTES in this directory.
 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
@@ -22,7 +22,7 @@
 ----------------
 
 The release plan is to have a series of alpha releases in 2007 and 2008,
-beta releases in 2008, and a final release in August 2008.  The alpha
+beta releases in 2008, and a final release in September 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

Modified: python/branches/py3k/RELNOTES
==============================================================================
--- python/branches/py3k/RELNOTES	(original)
+++ python/branches/py3k/RELNOTES	Thu Jun 19 02:35:43 2008
@@ -6,6 +6,12 @@
 Please report bugs to http://bugs.python.org/.
 
 
+Version 3.0b1 - Release Date 18-Jun-2008
+----------------------------------------
+
+Please search the bug tracker for critical issues in Python 3.0.
+
+
 Version 3.0a5 - Release Date 08-May-2008
 ----------------------------------------
 


More information about the Python-3000-checkins mailing list