2006-07-22 Don Allingham <don@gramps-project.org>

* src/Filters/Rules/Person/__init__.py: add register function
	* configure.in: bump up version number 



svn: r7058
This commit is contained in:
Don Allingham 2006-07-23 04:21:51 +00:00
parent a567a9c7e6
commit 8b210ffc38
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-07-22 Don Allingham <don@gramps-project.org>
* src/Filters/Rules/Person/__init__.py: add register function
* configure.in: bump up version number
2006-07-22 Alex Roitman <shura@gramps-project.org>
* Makefile.am (SUBDIRS): Add debian dir.
* configure.in: Generate debian/Makefile

View File

@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl May need to run automake && aclocal first
AC_PREREQ(2.57)
AC_INIT(gramps, 2.1.8, [gramps-bugs@lists.sourceforge.net])
AC_INIT(gramps, 2.1.90, [gramps-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.in)
AM_INIT_AUTOMAKE(1.6.3)

View File

@ -152,3 +152,6 @@ editor_rule_list = [
HasNote,
HasNoteRegexp,
]
def register(rule):
editor_rule_list.append(rule)