From 72af63409a14f73cb745fb292be7dfb866680dce Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 26 Jul 2021 09:17:58 -0400 Subject: [PATCH] Increment version for 21.05.02 release --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Koha.pm b/Koha.pm index db12c54ca6..2d5065ba6c 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 = "21.05.01.004"; +$VERSION = "21.05.02.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 26619d3493..d4258601e3 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24348,7 +24348,7 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, "", "Koha 21.05.01 release" ); } -$DBversion = '21.05.00.004'; +$DBversion = '21.05.01.004'; if( CheckVersion( $DBversion ) ) { $dbh->do( q{ INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) @@ -24358,6 +24358,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 26205, "Add new system preference NewsLog to log news changes"); } +$DBversion = '21.05.02.000'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, "", "Koha 21.05.02 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.20.1