diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-09-18 06:51:50 +0000 |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-09-18 06:51:50 +0000 |
commit | 2d8697f32c81f3db1e08ce198d5cebdeff5cc917 (patch) | |
tree | 222fd85bf1a866c47bc694f7879dc2cc50cca893 | |
parent | 347f3cc40f678ebc9a81928b6860005ff4996abe (diff) | |
download | cpython-git-2d8697f32c81f3db1e08ce198d5cebdeff5cc917.tar.gz |
Preparing for 2.5 final.v2.5
(damn, it's nice to see the line
#define PY_VERSION "2.5"
in patchlevel.h)
-rw-r--r-- | Doc/commontex/boilerplate.tex | 2 | ||||
-rw-r--r-- | Include/patchlevel.h | 6 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 5 | ||||
-rw-r--r-- | Lib/idlelib/idlever.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 7 | ||||
-rw-r--r-- | Misc/RPM/python-2.5.spec | 2 | ||||
-rw-r--r-- | README | 4 |
7 files changed, 20 insertions, 8 deletions
diff --git a/Doc/commontex/boilerplate.tex b/Doc/commontex/boilerplate.tex index 3545a6767b..68b0abfb14 100644 --- a/Doc/commontex/boilerplate.tex +++ b/Doc/commontex/boilerplate.tex @@ -5,5 +5,5 @@ Email: \email{docs@python.org} } -\date{12th September, 2006} % XXX update before final release! +\date{19th September, 2006} % XXX update before final release! \input{patchlevel} % include Python version information diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 0990a186fc..3043189f32 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -22,11 +22,11 @@ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 5 #define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 2 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.5c2" +#define PY_VERSION "2.5" /* Subversion Revision number of this file (not of the repository) */ #define PY_PATCHLEVEL_REVISION "$Revision$" diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 74897fad9b..4f4115d5d0 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,3 +1,8 @@ +What's New in IDLE 1.2? +======================= + +*Release date: 19-SEP-2006* + What's New in IDLE 1.2c2? ========================= diff --git a/Lib/idlelib/idlever.py b/Lib/idlelib/idlever.py index 5266b82a4e..124fae0dfa 100644 --- a/Lib/idlelib/idlever.py +++ b/Lib/idlelib/idlever.py @@ -1 +1 @@ -IDLE_VERSION = "1.2c2" +IDLE_VERSION = "1.2" @@ -4,6 +4,13 @@ Python News (editors: check NEWS.help for information about editing NEWS using ReST.) +What's New in Python 2.5 (final) +================================ + +*Release date: 19-SEP-2006* + +No changes since release candidate 2. + What's New in Python 2.5 release candidate 2? ============================================= diff --git a/Misc/RPM/python-2.5.spec b/Misc/RPM/python-2.5.spec index 4df60e8448..74144c2ad1 100644 --- a/Misc/RPM/python-2.5.spec +++ b/Misc/RPM/python-2.5.spec @@ -33,7 +33,7 @@ ################################# %define name python -%define version 2.5c2 +%define version 2.5 %define libvers 2.5 %define release 1pydotorg %define __prefix /usr @@ -1,5 +1,5 @@ -This is Python version 2.5 rc 2 -=============================== +This is Python version 2.5 +========================== Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation. All rights reserved. |