Koha 21.05.00 is here! v21.05.00
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 28 May 2021 11:36:02 +0000 (13:36 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 28 May 2021 12:45:37 +0000 (14:45 +0200)
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index a265302..80fe4d7 100644 (file)
--- a/Koha.pm
+++ b/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 = "20.12.00.050";
+$VERSION = "21.05.00.000";
 
 sub version {
     return $VERSION;
index 6b0a6b5..aadeefd 100755 (executable)
@@ -24274,6 +24274,11 @@ if ( CheckVersion($DBversion) ) {
     NewVersion( $DBversion, 28108, "Add new systempreference OpacHiddenItemsHidesRecord" );
 }
 
+$DBversion = '21.05.00.000';
+if( CheckVersion( $DBversion ) ) {
+    NewVersion( $DBversion, "", "Koha 21.05.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/';