Koha 20.06 - start of a new dev cycle
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 2 Jun 2020 09:14:35 +0000 (11:14 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 2 Jun 2020 09:20:53 +0000 (11:20 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 9377d5e..00beea1 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.05.00.000";
+$VERSION = "20.06.00.000";
 
 sub version {
     return $VERSION;
index e2cffe9..b53146f 100755 (executable)
@@ -22171,6 +22171,11 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, undef, '20.05.00 alpha release' );
 }
 
+$DBversion = '20.06.00.000';
+if( CheckVersion( $DBversion ) ) {
+    NewVersion( $DBversion, undef, 'All our codebase are belong to everybody' );
+}
+
 # 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/';