Skip to content

Commit ae1c290

Browse files
committed
Prepare for 2.4.5c1
1 parent c8ed4ff commit ae1c290

File tree

8 files changed

+23
-17
lines changed

8 files changed

+23
-17
lines changed

Include/patchlevel.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
/* Version parsed out into numeric values */
2222
#define PY_MAJOR_VERSION 2
2323
#define PY_MINOR_VERSION 4
24-
#define PY_MICRO_VERSION 4
25-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
26-
#define PY_RELEASE_SERIAL 0
24+
#define PY_MICRO_VERSION 5
25+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
26+
#define PY_RELEASE_SERIAL 1
2727

2828
/* Version as a string */
29-
#define PY_VERSION "2.4.4"
29+
#define PY_VERSION "2.4.5c1"
3030

3131
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
3232
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */

LICENSE

+7-6
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ the various releases.
5353
2.4.2 2.4.1 2005 PSF yes
5454
2.4.3 2.4.2 2006 PSF yes
5555
2.4.4 2.4.3 2006 PSF yes
56+
2.4.5 2.4.4 2008 PSF yes
5657
2.5 2.4 2006 PSF yes
5758

5859
Footnotes:
@@ -86,12 +87,12 @@ its associated documentation.
8687
2. Subject to the terms and conditions of this License Agreement, PSF
8788
hereby grants Licensee a nonexclusive, royalty-free, world-wide
8889
license to reproduce, analyze, test, perform and/or display publicly,
89-
prepare derivative works, distribute, and otherwise use Python
90-
alone or in any derivative version, provided, however, that PSF's
91-
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
92-
2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights
93-
Reserved" are retained in Python alone or in any derivative version
94-
prepared by Licensee.
90+
prepare derivative works, distribute, and otherwise use Python alone
91+
or in any derivative version, provided, however, that PSF's License
92+
Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001,
93+
2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation;
94+
All Rights Reserved" are retained in Python alone or in any derivative
95+
version prepared by Licensee.
9596

9697
3. In the event Licensee prepares a derivative work that is based on
9798
or incorporates Python or any part thereof, and wants to make

Lib/idlelib/NEWS.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
What's New in IDLE 1.1.5c1?
2+
=========================
3+
4+
*Release date: 02-Mar-2006*
5+
16
What's New in IDLE 1.1.4?
27
=========================
38

Lib/idlelib/idlever.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "1.1.4"
1+
IDLE_VERSION = "1.1.5c1"

Misc/NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Python News
77
What's New in Python 2.4.5c1?
88
=============================
99

10-
*Release date: XX-XXX-XXXX*
10+
*Release date: 20-Mar-2008*
1111

1212

1313
Core and builtins

Misc/RPM/python-2.4.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#################################
3434

3535
%define name python
36-
%define version 2.4.4
36+
%define version 2.4.5
3737
%define libvers 2.4
3838
%define release 1pydotorg
3939
%define __prefix /usr

Python/getcopyright.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
static char cprt[] =
66
"\
7-
Copyright (c) 2001-2006 Python Software Foundation.\n\
7+
Copyright (c) 2001-2008 Python Software Foundation.\n\
88
All Rights Reserved.\n\
99
\n\
1010
Copyright (c) 2000 BeOpen.com.\n\

README

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
This is Python version 2.4.4
2-
============================
1+
This is Python version 2.4.5c1
2+
==============================
33

4-
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.
4+
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation.
55
All rights reserved.
66

77
Copyright (c) 2000 BeOpen.com.

0 commit comments

Comments
 (0)