Increment version for 21.05.03 release

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Kyle Hall 2021-08-24 08:15:56 -04:00
parent bd3dc3f758
commit 8ea80995c5
2 changed files with 6 additions and 1 deletions

View file

@ -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.02.002";
$VERSION = "21.05.02.003";
sub version {
return $VERSION;

View file

@ -24422,6 +24422,11 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 28872, "Update syspref values from on and off to 1 and 0");
}
$DBversion = '21.05.03.000';
if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, "", "Koha 21.05.03 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/';