Increment version for 17.05.11 release
authorFridolin Somers <fridolin.somers@biblibre.com>
Wed, 25 Apr 2018 06:22:56 +0000 (08:22 +0200)
committerFridolin Somers <fridolin.somers@biblibre.com>
Wed, 25 Apr 2018 06:25:17 +0000 (08:25 +0200)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>

Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index e2e5b93..65aa4f8 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 = "17.05.10.000";
+$VERSION = "17.05.11.000";
 
 sub version {
     return $VERSION;
index 3227b24..3f53295 100755 (executable)
@@ -14676,6 +14676,12 @@ if ( CheckVersion($DBversion) ) {
     print "Upgrade to $DBversion done (Koha 17.05.10)\n";
 }
 
+$DBversion = "17.05.11.000";
+if ( CheckVersion($DBversion) ) {
+    SetVersion($DBversion);
+    print "Upgrade to $DBversion done (Koha 17.05.11)\n";
+}
+
 # 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.