Increment version for 21.05.21 release
authorVictor Grousset/tuxayo <victor@tuxayo.net>
Wed, 30 Nov 2022 23:48:45 +0000 (00:48 +0100)
committerVictor Grousset/tuxayo <victor@tuxayo.net>
Wed, 30 Nov 2022 23:48:48 +0000 (00:48 +0100)
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 76fd958..e8b5962 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 = "21.05.20.000";
+$VERSION = "21.05.21.000";
 
 sub version {
     return $VERSION;
index e4e14a1..d5c80d2 100755 (executable)
@@ -24706,6 +24706,11 @@ if ( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, "", "Koha 21.05.20 release" );
 }
 
+$DBversion = '21.05.21.000';
+if ( CheckVersion( $DBversion ) ) {
+    NewVersion( $DBversion, "", "Koha 21.05.21 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/';