bump version number after the 3.2.6 release

svn: r17369
This commit is contained in:
Stéphane Charette 2011-05-01 07:11:19 +00:00
parent ccfe2230ef
commit 1091c221ba
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ dnl May need to run automake && aclocal first
AC_PREREQ(2.57)
dnl NOTE: arg to macro below becomes the "VERSION"
AC_INIT(gramps, 3.2.6, [gramps-bugs@lists.sourceforge.net])
AC_INIT(gramps, 3.2.7, [gramps-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.in)
AM_INIT_AUTOMAKE([1.6.3 foreign])

View File

@ -42,10 +42,10 @@ from gettext import gettext as _
#-------------------------------------------------------------------------
PROGRAM_NAME = "Gramps"
if "@VERSIONSTRING@" == "@" + "VERSIONSTRING" + "@":
VERSION = "3.2.6"
VERSION = "3.2.7"
else:
VERSION = "@VERSIONSTRING@"
VERSION_TUPLE = (3, 2, 6)
VERSION_TUPLE = (3, 2, 7)
#-------------------------------------------------------------------------
#