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

Skip to content

Commit 9e47859

Browse files
committed
Prepare for final release.
1 parent 8f9fabd commit 9e47859

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

Include/patchlevel.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,20 @@ PERFORMANCE OF THIS SOFTWARE.
4646
#define PY_RELEASE_LEVEL_BETA 0xB
4747
#define PY_RELEASE_LEVEL_GAMMA 0xC
4848
#define PY_RELEASE_LEVEL_FINAL 0xF /* Serial should be 0 here */
49+
/* Higher for patch releases */
4950

5051
/* Version parsed out into numeric values */
5152
#define PY_MAJOR_VERSION 1
5253
#define PY_MINOR_VERSION 5
5354
#define PY_MICRO_VERSION 2
54-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
55-
#define PY_RELEASE_SERIAL 1
55+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
56+
#define PY_RELEASE_SERIAL 0
5657

5758
/* Version as a string */
58-
#define PY_VERSION "1.5.2c1"
59+
#define PY_VERSION "1.5.2"
5960

6061
/* Historic */
61-
#define PATCHLEVEL "1.5.2c1"
62+
#define PATCHLEVEL "1.5.2"
6263

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

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 1.5.2c1 -- released Apr 8, 1999
2-
======================================================
1+
This is Python version 1.5.2 -- released April 13, 1999
2+
=======================================================
33

44

55
What's new in this release?

0 commit comments

Comments
 (0)