Skip to content

Commit 4f30002

Browse files
author
barry.warsaw
committed
release.py induced and manual editing steps for 3.0a4.
git-svn-id: http://svn.python.org/projects/python/branches/py3k@62119 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent f841877 commit 4f30002

6 files changed

Lines changed: 30 additions & 22 deletions

File tree

Include/patchlevel.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@
1515
/* Higher for patch releases */
1616

1717
/* Version parsed out into numeric values */
18+
/*--start constants--*/
1819
#define PY_MAJOR_VERSION 3
1920
#define PY_MINOR_VERSION 0
2021
#define PY_MICRO_VERSION 0
2122
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
22-
#define PY_RELEASE_SERIAL 3
23+
#define PY_RELEASE_SERIAL 4
2324

2425
/* Version as a string */
25-
#define PY_VERSION "3.0a3+"
26+
#define PY_VERSION "3.0a4"
27+
/*--end constants--*/
2628

2729
/* Subversion Revision number of this file (not of the repository) */
2830
#define PY_PATCHLEVEL_REVISION "$Revision$"

Lib/distutils/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@
1818
# In general, major and minor version should loosely follow the Python
1919
# version number the distutils code was shipped with.
2020
#
21-
__version__ = "2.6.0"
21+
22+
#--start constants--
23+
__version__ = "3.0a4"
24+
#--end constants--

Lib/idlelib/idlever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "3.0a3"
1+
IDLE_VERSION = "3.0a4"

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Python News
77
What's New in Python 3.0a4?
88
===========================
99

10-
*Release date: XX-XXX-2008*
10+
*Release date: 02-Apr-2008*
1111

1212
Core and Builtins
1313
-----------------

Misc/RPM/python-3.0.spec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@
3333
#################################
3434

3535
%define name python
36-
%define version 2.6a1
37-
%define libvers 2.6
36+
#--start constants--
37+
%define version 3.0a4
38+
%define libver 3.0
39+
#--end constants--
3840
%define release 1pydotorg
3941
%define __prefix /usr
4042

README

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.0 alpha 3
1+
This is Python version 3.0 alpha 4
22
==================================
33

44
For notes specific to this release, see RELNOTES in this directory.
@@ -21,13 +21,14 @@ the standard library namespace.
2121
Release Schedule
2222
----------------
2323

24-
The release plan is to have a series of alpha releases in 2007, beta
25-
releases in 2008, and a final release in August 2008. The alpha
26-
releases are primarily aimed at developers who want a sneak peek at
27-
the new langauge, especially those folks who plan to port their code
28-
to Python 3000. The hope is that by the time of the final release,
29-
many 3rd party packages will already be available in a 3.0-compatible
30-
form.
24+
The release plan is to have a series of alpha releases in 2007 and 2008,
25+
beta releases in 2008, and a final release in August 2008. The alpha
26+
releases are primarily aimed at developers who want a sneak peek at the
27+
new langauge, especially those folks who plan to port their code to
28+
Python 3000. The hope is that by the time of the final release, many
29+
3rd party packages will already be available in a 3.0-compatible form.
30+
31+
See PEP 361 for release details: http://www.python.org/dev/peps/pep-0361/
3132

3233

3334
Documentation
@@ -38,12 +39,12 @@ Documentation for Python 3000 is online, updated twice a day:
3839
http://docs.python.org/dev/3.0/
3940

4041
All documentation is also available online at the Python web site
41-
(http://docs.python.org/, see below). It is available online for occasional
42-
reference, or can be downloaded in many formats for faster access. The
43-
documentation is downloadable in HTML, PostScript, PDF, LaTeX (through 2.5), and
44-
reStructuredText (2.6+) formats; the LaTeX and reStructuredText versions are
45-
primarily for documentation authors, translators, and people with special
46-
formatting requirements.
42+
(http://docs.python.org/, see below). It is available online for
43+
occasional reference, or can be downloaded in many formats for faster
44+
access. The documentation is downloadable in HTML, PostScript, PDF,
45+
LaTeX (through 2.5), and reStructuredText (2.6+) formats; the LaTeX and
46+
reStructuredText versions are primarily for documentation authors,
47+
translators, and people with special formatting requirements.
4748

4849
This is a work in progress; please help improve it!
4950

@@ -86,7 +87,7 @@ is incomplete, and also doesn't list anything merged in from the 2.6
8687
release under development).
8788

8889
Proposals for enhancement
89-
------------------------------
90+
-------------------------
9091

9192
If you have a proposal to change Python, you may want to send an email to the
9293
comp.lang.python or python-ideas mailing lists for inital feedback. A Python

0 commit comments

Comments
 (0)