Bug 7674: Increment version number origin/new/bug_7674
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Mon, 17 Dec 2012 14:42:56 +0000 (09:42 -0500)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Mon, 17 Dec 2012 14:42:56 +0000 (09:42 -0500)
Database update for bug 7674 has been given version 3.11.00.009

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

index be1043e..2c4b1ed 100755 (executable)
@@ -6284,7 +6284,7 @@ if (CheckVersion($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.11.00.XXX";
+$DBversion = "3.11.00.009";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     $dbh->do("
         INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES
@@ -6294,7 +6294,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
         ('OpacSeparateHoldingsBranch', 'homebranch', 'Branch used to separate holdings (OPAC)', 'homebranch|holdingbranch', 'Choice')
     ");
 
-    print "Upgrade to $DBversion done (Add systempreferences SeparateHoldings, SeparateHoldingsBranch, OpacSeparateHoldings and OpacSeparateHoldingsBranch) \n";
+    print "Upgrade to $DBversion done (Bug 7674: Add systempreferences SeparateHoldings, SeparateHoldingsBranch, OpacSeparateHoldings and OpacSeparateHoldingsBranch) \n";
     SetVersion ($DBversion);
 }
 
index 136a73b..eb6b55c 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.11.00.008';
+    our $VERSION = '3.11.00.009';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install