Koha 3.8.0 bump
authorPaul Poulain <paul.poulain@biblibre.com>
Mon, 23 Apr 2012 14:28:46 +0000 (16:28 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Mon, 23 Apr 2012 14:28:46 +0000 (16:28 +0200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index c1e64ec..84f0437 100755 (executable)
@@ -5206,6 +5206,11 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.08.00.000";
+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
+    print "Upgrade to $DBversion done\n";
+    SetVersion($DBversion);
+}
 
 =head1 FUNCTIONS
 
index d69aa42..8b029f8 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.07.00.049';
+    our $VERSION = '3.08.00.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install