r51356 - in python/trunk: Doc/commontex/boilerplate.tex Include/patchlevel.h
Author: neal.norwitz Date: Fri Aug 18 06:01:38 2006 New Revision: 51356 Modified: python/trunk/Doc/commontex/boilerplate.tex python/trunk/Include/patchlevel.h Log: More post-release wibble Modified: python/trunk/Doc/commontex/boilerplate.tex ============================================================================== --- python/trunk/Doc/commontex/boilerplate.tex (original) +++ python/trunk/Doc/commontex/boilerplate.tex Fri Aug 18 06:01:38 2006 @@ -5,5 +5,5 @@ Email: \email{docs@python.org} } -\date{17th August, 2006} % XXX update before final release! +\date{\today} % XXX update before final release! \input{patchlevel} % include Python version information Modified: python/trunk/Include/patchlevel.h ============================================================================== --- python/trunk/Include/patchlevel.h (original) +++ python/trunk/Include/patchlevel.h Fri Aug 18 06:01:38 2006 @@ -20,13 +20,13 @@ /* Version parsed out into numeric values */ #define PY_MAJOR_VERSION 2 -#define PY_MINOR_VERSION 5 +#define PY_MINOR_VERSION 6 #define PY_MICRO_VERSION 0 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "2.5c1" +#define PY_VERSION "2.6a1" /* Subversion Revision number of this file (not of the repository) */ #define PY_PATCHLEVEL_REVISION "$Revision$"
On 8/17/06, "Martin v. Löwis" <martin@v.loewis.de> wrote:
neal.norwitz schrieb:
+#define PY_VERSION "2.6a1"
Shouldn't this be 2.6a0?
I kinda wondered that when I was making the change. It seems more consistent so I made the change. I don't know if I got all the other places that need to be updated. Here's the current list of what has changed so far. PCbuild/pythoncore.vcproj PCbuild/readme.txt Change python2x{,_d}.* PC/pyconfig.h Change python2x{,_d}.lib Doc/commontex/boilerplate.tex Change date to \today Misc/NEWS Add template and update version configure.in Change PYTHON_VERSION define
Neal Norwitz schrieb:
I kinda wondered that when I was making the change. It seems more consistent so I made the change. I don't know if I got all the other places that need to be updated.
There's also Misc/build.sh. Martin
participants (3)
-
"Martin v. Löwis"
-
Neal Norwitz
-
neal.norwitz