Skip to content

Commit 63fd15c

Browse files
committed
Bump release level to 2.3b2.
1 parent 01d49fa commit 63fd15c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
#define PY_MINOR_VERSION 3
2424
#define PY_MICRO_VERSION 0
2525
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
26-
#define PY_RELEASE_SERIAL 1
26+
#define PY_RELEASE_SERIAL 2
2727

2828
/* Version as a string */
29-
#define PY_VERSION "2.3b1+"
29+
#define PY_VERSION "2.3b2"
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 >= ... */

PC/python_nt.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
* but that neither gives an error nor comes anywhere close to working. The
3434
* following comment and #define are output from PCbuild\field3.py:
3535
*
36-
* For 2.3b1,
36+
* For 2.3b2,
3737
* PY_MICRO_VERSION = 0
3838
* PY_RELEASE_LEVEL = 'beta' = 0xb
39-
* PY_RELEASE_SERIAL = 1
39+
* PY_RELEASE_SERIAL = 2
4040
*
41-
* and 0*1000 + 11*10 + 1 = 111
41+
* and 0*1000 + 11*10 + 2 = 112
4242
*/
43-
#define FIELD3 111
43+
#define FIELD3 112
4444

4545
/* e.g., 2.1a2
4646
* PY_VERSION comes from patchevel.h

0 commit comments

Comments
 (0)