From fcb0c4ed4954edfc1e7d8b76b0a09be0d29880b5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 30 Nov 2020 10:47:25 +0100 Subject: [PATCH] Koha 20.12 - start of a new dev cycle Signed-off-by: Jonathan Druart --- 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 77fac064be..1a2105cd85 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.00.000"; +$VERSION = "20.12.00.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 1768a16ba5..6d96ca6cb7 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23415,6 +23415,11 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, "", "Koha 20.11.00 release" ); } +$DBversion = '20.12.00.000'; +if( CheckVersion( $DBversion ) ) { + NewVersion( $DBversion, "", "Sorry, this is my first life, I am still learning!" ); +} + # 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