Increment version for 16.11.13 release
authorKatrin Fischer <katrin.fischer.83@web.de>
Sun, 22 Oct 2017 22:31:19 +0000 (00:31 +0200)
committerKatrin Fischer <katrin.fischer.83@web.de>
Sun, 22 Oct 2017 22:31:19 +0000 (00:31 +0200)
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index deadf80..1424857 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.12.000";
+$VERSION = "16.11.13.000";
 
 sub version {
     return $VERSION;
index 3a5a122..c6a5329 100755 (executable)
@@ -13884,6 +13884,12 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "16.11.13.000";
+if ( CheckVersion($DBversion) ) {
+    print "Upgrade to $DBversion done (Koha 16.11.13)\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.