From 76e4790d26b7bae6777f4ba33cc520518f0f02f0 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 27 Oct 2020 20:37:08 +0000 Subject: [PATCH] Increment version for 20.05.05 release Signed-off-by: Lucas Gass (cherry picked from commit d59ec16fd07aa95bc870ad06b7b568c38fb4bcc0) Signed-off-by: Lucas Gass --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index 4cd4b68938..b167addc31 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 = "20.05.04.002"; +$VERSION = "20.05.05.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c8ae4b3f3d..f5a82e46b8 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22419,6 +22419,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 18958, "Add reserve_id to hold_fill_targets"); } +$DBversion = '20.05.05.000'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, undef, '20.05.05 release' ); +} + # SEE bug 13068 # 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