Koha 20.11.00 is here!

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Jonathan Druart 2020-11-27 13:19:16 +01:00
parent 02bc85cbef
commit 5deae26ae8
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 = "20.06.00.069";
$VERSION = "20.11.00.000";
sub version {
return $VERSION;

View file

@ -23410,6 +23410,11 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 24083, ["Add circulation_rules 'unseen_renewals_allowed'", "Add issues.unseen_renewals & old_issues.unseen_renewals)", "Add new system preference UnseenRenewals"] );
}
$DBversion = '20.11.00.000';
if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, "", "Koha 20.11.00 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/';