From 6f1082166e90429e6d3b00c8351c1d46f42c1592 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Wed, 1 Dec 2021 20:11:04 -1000 Subject: [PATCH] Koha 21.12 - start of a new dev cycle All that is gold does not glitter, Not all those who wander are lost; The old that is strong does not wither, Deep roots are not reached by the frost. Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/db_revs/211200000.pl | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100755 installer/data/mysql/db_revs/211200000.pl diff --git a/Koha.pm b/Koha.pm index e67b6cd4a5..1c22840ecf 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 = "21.11.00.000"; +$VERSION = "21.12.00.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/db_revs/211200000.pl b/installer/data/mysql/db_revs/211200000.pl new file mode 100755 index 0000000000..9f957e4d7c --- /dev/null +++ b/installer/data/mysql/db_revs/211200000.pl @@ -0,0 +1,17 @@ +use Modern::Perl; +use utf8; +use Encode qw( encode_utf8 ); + +return { + bug_number => undef, + description => 'Increase DBRev for 21.12', + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + say $out encode_utf8 '📜 All that is gold does not glitter,'; + say $out encode_utf8 '📜 Not all those who wander are lost;'; + say $out encode_utf8 '📜 The old that is strong does not wither,'; + say $out encode_utf8 '📜 Deep roots are not reached by the frost.'; + }, +} -- 2.20.1