From 6072492693a9c0cb784224f284733011a2f092f9 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 28 Nov 2022 15:26:01 -0300 Subject: [PATCH] Koha 22.12 - start of a new dev cycle Signed-off-by: Tomas Cohen Arazi --- Koha.pm | 2 +- installer/data/mysql/db_revs/221200000.pl | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100755 installer/data/mysql/db_revs/221200000.pl diff --git a/Koha.pm b/Koha.pm index 16c5f8fe49..8e4d7837a2 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.11.00.000"; +$VERSION = "22.12.00.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/db_revs/221200000.pl b/installer/data/mysql/db_revs/221200000.pl new file mode 100755 index 0000000000..e699ba9605 --- /dev/null +++ b/installer/data/mysql/db_revs/221200000.pl @@ -0,0 +1,16 @@ +use Modern::Perl; +use utf8; +use Encode qw( encode_utf8 ); + +return { + bug_number => undef, + description => 'Increase DBRev for 22.12', + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + say $out encode_utf8 '📜 Deep into that darkness peering, long I stood there wondering, fearing,'; + say $out encode_utf8 '📜 Doubting, dreaming dreams no mortal ever dared to dream before;'; + say $out encode_utf8 '📜 But the silence was unbroken, and the stillness gave no token'; + }, +} -- 2.20.1