From 0d483a57222876ad264a45794b105001a194c407 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 6 Dec 2023 12:51:10 +0000 Subject: [PATCH] DBRev 23.12.00.000: Start of a new release cycle Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- installer/data/mysql/db_revs/231200000.pl | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100755 installer/data/mysql/db_revs/231200000.pl diff --git a/Koha.pm b/Koha.pm index f44702f156..e8506568aa 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 = "23.11.00.000"; +$VERSION = "23.12.00.000"; sub version { return $VERSION; diff --git a/installer/data/mysql/db_revs/231200000.pl b/installer/data/mysql/db_revs/231200000.pl new file mode 100755 index 0000000000..ad2003ae50 --- /dev/null +++ b/installer/data/mysql/db_revs/231200000.pl @@ -0,0 +1,14 @@ +use Modern::Perl; +use utf8; +use Encode qw( encode_utf8 ); + +return { + bug_number => undef, + description => 'Increase DBRev for 23.12', + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + say $out encode_utf8 "📜 Bugs will happen. (Nick Clemens)"; + say $out encode_utf8 "📜 It's all about the people. (Chris Cormack)"; + }, + } -- 2.39.5