Updating Version Number to 3.02.04.000
authorChris Nighswonger <chris.nighswonger@gmail.com>
Tue, 22 Feb 2011 03:01:52 +0000 (22:01 -0500)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Tue, 22 Feb 2011 03:01:52 +0000 (22:01 -0500)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 6461ee8..a2f6fb3 100755 (executable)
@@ -3951,6 +3951,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = '3.02.04.000';
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    print "Upgrade to $DBversion done (Incrementing version for 3.2.4 release.)\n";
+    SetVersion ($DBversion);
+}
+
 =head1 FUNCTIONS
 
 =head2 DropAllForeignKeys($table)
index f05a49a..7326018 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.02.03.003';
+    our $VERSION = '3.02.04.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install