From 52c891290834eb927f53064e5adbb47bb275229d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 31 May 2019 07:51:09 +0100 Subject: [PATCH] Increment version for 18.11.06 release Signed-off-by: Martin Renvoize --- 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 4104940c45..797a88aeaf 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 = "18.11.05.001"; +$VERSION = "18.11.06.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index a2c5a66030..b471a55025 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -17452,7 +17452,7 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } -$DBversion = '18.12.05.001'; +$DBversion = '18.11.05.001'; if( CheckVersion( $DBversion ) ) { unless ( foreign_key_exists( 'tmp_holdsqueue', 'tmp_holdsqueue_ibfk_1' ) ) { @@ -17471,6 +17471,12 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 22899 - Add items constraint to tmp_holdsqueue)\n"; } +$DBversion = "18.11.06.000"; +if ( CheckVersion($DBversion) ) { + print "Upgrade to $DBversion done (18.11.06 release)\n"; + SetVersion($DBversion); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5