Koha 21.06 - start of a new dev cycle
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 2 Jun 2021 14:44:17 +0000 (16:44 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 2 Jun 2021 14:47:57 +0000 (16:47 +0200)
Run, rabbit run.
Dig that hole, forget the sun,
And when at last the work is done
Don't sit down it's time to dig another one.

---

Breathe
Waters, Gilmour, Wright

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 80fe4d7..899b02f 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.00.000";
+$VERSION = "21.06.00.000";
 
 sub version {
     return $VERSION;
index aadeefd..bf3f5c7 100755 (executable)
@@ -24279,6 +24279,11 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, "", "Koha 21.05.00 release" );
 }
 
+$DBversion = '21.06.00.000';
+if( CheckVersion( $DBversion ) ) {
+    NewVersion( $DBversion, "", ["🎵 Run, rabbit run. ðŸŽ¶", "Dig that hole, forget the sun,", "And when at last the work is done", "Don't sit down it's time to dig another one."] );
+}
+
 # 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/';