Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 160b9a3

Browse files
committed
Bumping versions for 3.0a5
1 parent 8d109cb commit 160b9a3

6 files changed

Lines changed: 22 additions & 22 deletions

File tree

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 0
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 4
23+
#define PY_RELEASE_SERIAL 5
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.0a4+"
26+
#define PY_VERSION "3.0a5"
2727
/*--end constants--*/
2828

2929
/* Subversion Revision number of this file (not of the repository) */

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
#
2121

2222
#--start constants--
23-
__version__ = "3.0a4"
23+
__version__ = "3.0a5"
2424
#--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.0a4"
1+
IDLE_VERSION = "3.0a5"

Misc/RPM/python-3.0.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
%define name python
3636
#--start constants--
37-
%define version 3.0a4
37+
%define version 3.0a5
3838
%define libver 3.0
3939
#--end constants--
4040
%define release 1pydotorg

README

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

44
For notes specific to this release, see RELNOTES in this directory.
@@ -70,22 +70,14 @@ the "What's New in Python 3.0" document, found at
7070

7171
Please help write it!
7272

73-
If you want to install multiple versions of Python see the section below
74-
entitled "Installing multiple versions".
75-
76-
77-
What's New Since 3.0a1
78-
----------------------
79-
80-
Undoubtedly the biggest change is in the bytes type: 'bytes' is now
81-
immutable, and there is a new mutable bytes type 'bytearray'. These
82-
two types are interoperable in every way. For more info on this
83-
issue, read PEP 3137.
84-
8573
For a more detailed change log, read Misc/NEWS (though this file, too,
8674
is incomplete, and also doesn't list anything merged in from the 2.6
8775
release under development).
8876

77+
If you want to install multiple versions of Python see the section below
78+
entitled "Installing multiple versions".
79+
80+
8981
Proposals for enhancement
9082
-------------------------
9183

@@ -95,13 +87,14 @@ Enhancement Proposal (PEP) may be submitted if your idea gains ground. All
9587
current PEPs, as well as guidelines for submitting a new PEP, are listed at
9688
http://www.python.org/dev/peps/.
9789

90+
9891
Converting From Python 2.x to 3.0
9992
---------------------------------
10093

101-
Python 2.6 (not yet released) will contain features to help locating
102-
code that needs to be changed, such as optional warnings when
103-
deprecated features are used, and backported versions of certain key
104-
Python 3000 features.
94+
Python 2.6 (to be released concurrent with Python 3.0) will contain features
95+
to help locating code that needs to be changed, such as optional warnings when
96+
deprecated features are used, and backported versions of certain key Python
97+
3000 features.
10598

10699

107100
Installing multiple versions

RELNOTES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ Release notes describe unfinished work in particular releases.
55

66
Please report bugs to http://bugs.python.org/.
77

8+
9+
Version 3.0a5 - Release Date 08-May-2008
10+
----------------------------------------
11+
12+
Please search the bug tracker for critical issues in Python 3.0.
13+
14+
815
Version 3.0a2 - Release Date 07-Dec-2007
916
----------------------------------------
1017

0 commit comments

Comments
 (0)