diff --git a/CHANGES b/CHANGES index f82b99c65e..87b7198699 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,11 @@ Version history: ------- ------- + 1.3.4 - 27 March 2000 + o alpha code for check printing (requires gnome-print) + o more i18n of reports + o auto check numbering + o bug fixes and GUI improvements + 1.3.3 - 20 March 2000 o new QIF importer o new Swedish and Great Britain translations diff --git a/configure b/configure index fb11d2f880..9c8b0017ef 100755 --- a/configure +++ b/configure @@ -749,7 +749,7 @@ fi PACKAGE=gnucash -VERSION=1.3.3 +VERSION=1.3.4 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } diff --git a/configure.in b/configure.in index f1a7465acb..35d01322ea 100644 --- a/configure.in +++ b/configure.in @@ -23,7 +23,7 @@ AC_INIT(src/guile/gnucash.h.in) -AM_INIT_AUTOMAKE(gnucash,1.3.3) +AM_INIT_AUTOMAKE(gnucash,1.3.4) dnl Set of available languages. ALL_LINGUAS="fr de en_GB sv" diff --git a/rpm/gnucash.spec b/rpm/gnucash.spec index 7005876397..4a4f252b5c 100644 --- a/rpm/gnucash.spec +++ b/rpm/gnucash.spec @@ -1,6 +1,6 @@ Name: gnucash Summary: GnuCash is an application to keep track of your finances. -Version: 1.3.3 +Version: 1.3.4 Release: 1 Copyright: Free Software Foundation Group: Applications/Finance diff --git a/src/scm/command-line.scm b/src/scm/command-line.scm index aa3a3ca88d..96542dd164 100644 --- a/src/scm/command-line.scm +++ b/src/scm/command-line.scm @@ -98,7 +98,7 @@ (list (car args) (cdr args))) (define (gnc:prefs-show-version) - (display "GnuCash 1.3.3 development version") (newline)) + (display "GnuCash 1.3.4 development version") (newline)) (define (gnc:prefs-show-usage) (display "usage: gnucash [ option ... ] [ datafile ]") (newline))