From 554c9cb7d9c562960b24474687e7472a9257ab18 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 31 May 2022 08:42:29 -0300 Subject: [PATCH] Koha 22.06 - start of a new dev cycle The road of excess leads to the palace of wisdom; for we never know what is enough until we know what is more than enough. Signed-off-by: Tomas Cohen Arazi --- Koha.pm | 2 +- installer/data/mysql/db_revs/220600000.pl | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100755 installer/data/mysql/db_revs/220600000.pl diff --git a/Koha.pm b/Koha.pm index f2741e302d..3c5f79914d 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 = "22.05.00.000"; +$VERSION = "22.06.00.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/db_revs/220600000.pl b/installer/data/mysql/db_revs/220600000.pl new file mode 100755 index 0000000000..4e03397303 --- /dev/null +++ b/installer/data/mysql/db_revs/220600000.pl @@ -0,0 +1,17 @@ +use Modern::Perl; +use utf8; +use Encode qw( encode_utf8 ); + +return { + bug_number => undef, + description => 'Increase DBRev for 22.06', + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + say $out encode_utf8 '📜 The road of excess'; + say $out encode_utf8 '📜 leads to the palace of wisdom;'; + say $out encode_utf8 '📜 for we never know what is enough'; + say $out encode_utf8 '📜 until we know what is more than enough.'; + }, +} -- 2.20.1