Increment version for 16.11.01 release
authorKatrin Fischer <katrin.fischer.83@web.de>
Thu, 22 Dec 2016 19:41:31 +0000 (20:41 +0100)
committerKatrin Fischer <katrin.fischer.83@web.de>
Thu, 22 Dec 2016 19:41:31 +0000 (20:41 +0100)
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index f3c5278..36de3ae 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
 # - #4 : the developer version. The 4th number is the database subversion.
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
-$VERSION = "16.11.00.000";
+$VERSION = "16.11.01.000";
 
 sub version {
     return $VERSION;
index 6bfb158..4f2b65c 100755 (executable)
@@ -13700,6 +13700,12 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "16.11.01.000";
+if ( CheckVersion($DBversion) ) {
+    print "Upgrade to $DBversion done (Koha 16.11.01)\n";
+    SetVersion($DBversion);
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.