Bug 7189: Increment version number
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 30 Nov 2012 13:02:00 +0000 (08:02 -0500)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 30 Nov 2012 13:02:00 +0000 (08:02 -0500)
Database update for bug 7189 has been given version 3.11.00.003

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

index e7790ea..b1f3571 100755 (executable)
@@ -6097,7 +6097,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.11.00.XXX";
+$DBversion = "3.11.00.003";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('RefundLostItemFeeOnReturn', '1', 'If enabled, the lost item fee charged to a borrower will be refunded when the lost item is returned.', NULL, 'YesNo')");
     print "Upgrade to $DBversion done (Bug 7189: Add system preference RefundLostItemFeeOnReturn)\n";
index a3619b0..7c6e2a9 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.11.00.002';
+    our $VERSION = '3.11.00.003';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install