[pypy-commit] pypy default: bump pypy version to 1.6.0.dev1 to distinguish from the released "1.5.0

hpk42 noreply at buildbot.pypy.org
Thu Jul 14 16:38:59 CEST 2011


Author: holger krekel <holger at merlinux.eu>
Branch: 
Changeset: r45597:e38414a7518d
Date: 2011-07-14 16:38 +0200
http://bitbucket.org/pypy/pypy/changeset/e38414a7518d/

Log:	bump pypy version to 1.6.0.dev1 to distinguish from the released
	"1.5.0 (alpha)". Makes it a bit easier to know what pypy version was
	used when people/CI systems submit bug reports for test runs with
	pypy. Maybe makes sense to increase the patchlevel (the "1" in
	dev1) from time to time.

diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py
--- a/pypy/module/sys/version.py
+++ b/pypy/module/sys/version.py
@@ -10,7 +10,7 @@
 CPYTHON_VERSION            = (2, 7, 1, "final", 42)   #XXX # sync patchlevel.h
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 
-PYPY_VERSION               = (1, 5, 0, "alpha", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (1, 6, 0, "dev", 1)    #XXX # sync patchlevel.h
 
 if platform.name == 'msvc':
     COMPILER_INFO = 'MSC v.%d 32 bit' % (platform.version * 10 + 600)


More information about the pypy-commit mailing list