From 2fe969a9b83a2b217a9fcf6ee052e7b87ab67ec7 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 22 Sep 2020 17:47:57 +0000 Subject: [PATCH] Increment version for 20.05.04 release Signed-off-by: Lucas Gass (cherry picked from commit e3ba87e2a59c4437a4813933e162c9182b2cf805) --- 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 a5eb5cb6a9..4b2789e62e 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.03.001"; +$VERSION = "20.05.04.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index f871c3b13f..1422c8b0d2 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22393,6 +22393,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 25958, "Allow LongOverdue cron to exclude specified lost values"); } +$DBversion = '20.05.04.000'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, undef, '20.05.04 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