Updating Version Number to 3.02.02.00
authorChris Nighswonger <chris.nighswonger@gmail.com>
Tue, 21 Dec 2010 23:58:29 +0000 (18:58 -0500)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Tue, 21 Dec 2010 23:58:29 +0000 (18:58 -0500)
Updating version number for 3.2.2 release.

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 0613dc9..5df2e35 100755 (executable)
@@ -3897,6 +3897,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = '3.02.02.000';
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    print "Upgrade to $DBversion done (Incrementing version for 3.2.2 release.)\n";
+    SetVersion ($DBversion);
+}
+
 =head1 FUNCTIONS
 
 =head2 DropAllForeignKeys($table)
index 92f1d22..37f666c 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.02.01.003';
+    our $VERSION = '3.02.02.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install