Koha 3.8.18 release v3.08.18
authorChris Hall <followingthepath@gmail.com>
Mon, 23 Sep 2013 09:09:06 +0000 (21:09 +1200)
committerChris Hall <followingthepath@gmail.com>
Mon, 23 Sep 2013 09:09:17 +0000 (21:09 +1200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index d5acdbe..0d52a29 100755 (executable)
@@ -5465,6 +5465,12 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.08.18.000";
+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
+    print "Upgrade to $DBversion done (3.8.18 release)\n";
+    SetVersion($DBversion);
+}
+
 
 =head1 FUNCTIONS
 
index afa1ed4..5f52329 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.08.17.001';
+    our $VERSION = '3.08.18.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install