View | Details | Raw Unified | Return to bug 6473
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 = "3.22.00.000";
32
$VERSION = "3.23.00.000";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +6 lines)
Lines 11384-11389 if ( CheckVersion($DBversion) ) { Link Here
11384
    SetVersion($DBversion);
11384
    SetVersion($DBversion);
11385
}
11385
}
11386
11386
11387
$DBversion = "3.23.00.000";
11388
if ( CheckVersion($DBversion) ) {
11389
    print "Upgrade to $DBversion done (The year of the monkey will be here soon.)\n";
11390
    SetVersion ($DBversion);
11391
}
11392
11387
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11393
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
11388
# SEE bug 13068
11394
# SEE bug 13068
11389
# if there is anything in the atomicupdate, read and execute it.
11395
# if there is anything in the atomicupdate, read and execute it.
11390
- 

Return to bug 6473