From 03d2b39e9649b6ae97a8f9ec545a064cdac0d543 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 24 Apr 2018 00:27:03 +0000 Subject: [PATCH] Increment version for 17.11.05 release Signed-off-by: Nick Clemens --- 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 095bd67f48..cb053c6e07 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 = "17.11.04.000"; +$VERSION = "17.11.05.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4b4709de9c..0b8de16212 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -15116,7 +15116,13 @@ if( CheckVersion( $DBversion ) ) { $DBversion = '17.11.04.000'; if( CheckVersion( $DBversion ) ) { SetVersion( $DBversion ); - print "Upgrade to $DBversion done (17.11.03 release)\n"; + print "Upgrade to $DBversion done (17.11.04 release)\n"; +} + +$DBversion = '17.11.05.000'; +if( CheckVersion( $DBversion ) ) { + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (17.11.05 release)\n"; } # DEVELOPER PROCESS, search for anything to execute in the db_update directory -- 2.39.5