Bug 9341: Increment version number
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Wed, 20 Mar 2013 00:39:20 +0000 (20:39 -0400)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Wed, 20 Mar 2013 00:39:20 +0000 (20:39 -0400)
Database update for bug 9341 has been given version 3.11.00.101

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

index ba02d99..fdca979 100755 (executable)
@@ -6526,12 +6526,12 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = '3.11.00.100';
+$DBversion = "3.11.00.100";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     print "Upgrade to $DBversion done (3.12-alpha release)\n";
     SetVersion ($DBversion);
 }
-$DBversion = "3.11.00.XXX";
+$DBversion = "3.11.00.101";
 if ( CheckVersion($DBversion) ) {
    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('UNIMARCAuthorsFacetsSeparator',', ', 'UNIMARC authors facets separator', NULL, 'short')");
    print "Upgrade to $DBversion done (Bug 9341: Problem with UNIMARC authors facets)\n";
index aafce46..768c052 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.11.00.100';
+    our $VERSION = '3.11.00.101';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install