Updating Version Number to 3.02.05.000
authorChris Nighswonger <chris.nighswonger@gmail.com>
Thu, 24 Feb 2011 20:41:17 +0000 (15:41 -0500)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Thu, 24 Feb 2011 20:41:17 +0000 (15:41 -0500)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

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