alpha5 -> beta

svn: r21902
This commit is contained in:
Jérôme Rapinat 2013-04-06 07:47:38 +00:00
parent 5dc89962ba
commit b1b1308343
2 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,6 @@
"UNSTABLE Gramps 4.0.0 Alpha5 release.
"UNSTABLE Gramps 4.0.0 beta release.
This is a technology preview to allow plugin writers and packagers-installer
writers to update their plugins and scripts. This release is not production
ready, so use for testing!"
This is a preview, so use for testing!"
It is recommended to use Gramps 4.0.0 with python 3.2 so as to be ready
for the future (python 2.7 works though).

View File

@ -21,5 +21,5 @@
# $Id$
VERSION_TUPLE = (4, 0, 0)
VERSION = '.'.join(map(str,VERSION_TUPLE)) + 'alpha5'
VERSION = '.'.join(map(str,VERSION_TUPLE)) + 'beta'
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])