From 06e9d51a601beb1104a6b2cd7b83c9c5aec8746f Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Tue, 24 Aug 2021 16:09:50 -1000 Subject: [PATCH] Increment version for 20.11.09 release --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index 7c839116cf..3fa0785883 100644 --- 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.11.08.001"; +$VERSION = "20.11.09.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 89a3a60bd7..2f6fb572fb 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23643,6 +23643,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 28567, "Set to NULL empty branches fields"); } +$DBversion = '20.11.09.000'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, "", "Koha 20.11.09 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/'; -- 2.39.5