View | Details | Raw Unified | Return to bug 29378
Collapse All | Expand All

(-)a/Koha.pm (-1 / +1 lines)
Lines 29-35 use vars qw{ $VERSION }; Link Here
29
# - #4 : the developer version. The 4th number is the database subversion.
29
# - #4 : the developer version. The 4th number is the database subversion.
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
31
#        and is automatically called by Auth.pm when needed.
31
#        and is automatically called by Auth.pm when needed.
32
$VERSION = "21.05.05.000";
32
$VERSION = "21.05.05.003";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +5 lines)
Lines 24515-24520 if( CheckVersion( $DBversion ) ) { Link Here
24515
    NewVersion( $DBversion, 29137, "Add system preference CreateAVFromCataloguing");
24515
    NewVersion( $DBversion, 29137, "Add system preference CreateAVFromCataloguing");
24516
}
24516
}
24517
24517
24518
$DBversion = '21.05.05.003';
24519
if( CheckVersion( $DBversion ) ) {
24520
    NewVersion( $DBversion, "", "Koha 21.05.05 release" );
24521
}
24522
24518
# SEE bug 13068
24523
# SEE bug 13068
24519
# if there is anything in the atomicupdate, read and execute it.
24524
# if there is anything in the atomicupdate, read and execute it.
24520
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
24525
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
24521
- 

Return to bug 29378