Koha 22.12 - start of a new dev cycle
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 28 Nov 2022 18:26:01 +0000 (15:26 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 28 Nov 2022 18:26:01 +0000 (15:26 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha.pm
installer/data/mysql/db_revs/221200000.pl [new file with mode: 0755]

diff --git a/Koha.pm b/Koha.pm
index 16c5f8f..8e4d783 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 = "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 (executable)
index 0000000..e699ba9
--- /dev/null
@@ -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';
+    },
+}