From 1f6982a96ffc3e1315214550e0fbf160f45b09a6 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 8 May 2001 19:02:27 +0000 Subject: [PATCH] Fix the version information to reflect that this is the maintenance branch. --- Include/patchlevel.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 2d0fb111bf6c..7764fb8b3b64 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -21,15 +21,15 @@ /* Version parsed out into numeric values */ #define PY_MAJOR_VERSION 2 #define PY_MINOR_VERSION 0 -#define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_MICRO_VERSION 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA #define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.0" +#define PY_VERSION "2.0.1a1" /* Historic */ -#define PATCHLEVEL "2.0" +#define PATCHLEVEL "2.0.1a1" /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */ -- 2.47.3