@@ -, +, @@ --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) --- a/Koha.pm +++ a/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.05.000"; +$VERSION = "21.05.05.003"; sub version { return $VERSION; --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -24515,6 +24515,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 29137, "Add system preference CreateAVFromCataloguing"); } +$DBversion = '21.05.05.003'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, "", "Koha 21.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/'; --