From 532eac921789190f8b917caa48f77475061c6d74 Mon Sep 17 00:00:00 2001 From: Mason James Date: Sat, 18 Mar 2017 02:07:00 +1300 Subject: [PATCH] Increment version for 16.05.11 release --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Koha.pm b/Koha.pm index ba76fdce99..5c87b100e5 100644 --- 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.05.10.001"; +$VERSION = "16.05.11.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index d5b37dc9e3..887b305e58 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12942,8 +12942,14 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 17260 - updatedatabase.pl fails on invalid entries in ENUM and BOOLEAN columns)\n"; } +$DBversion = "16.05.11.000"; +if ( CheckVersion($DBversion) ) { + print "Upgrade to $DBversion done (Koha 16.05.11)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory -# SEE bug 13068 +# SEE bug sss # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5