]> git.donarmstrong.com Git - perltidy.git/commitdiff
update version to 20221112 20221112
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 11 Nov 2022 04:28:29 +0000 (20:28 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 11 Nov 2022 04:28:29 +0000 (20:28 -0800)
24 files changed:
CHANGES.md
bin/perltidy
docs/ChangeLog.html
docs/Tidy.html
docs/perltidy.html
lib/Perl/Tidy.pm
lib/Perl/Tidy.pod
lib/Perl/Tidy/Debugger.pm
lib/Perl/Tidy/DevNull.pm
lib/Perl/Tidy/Diagnostics.pm
lib/Perl/Tidy/FileWriter.pm
lib/Perl/Tidy/Formatter.pm
lib/Perl/Tidy/HtmlWriter.pm
lib/Perl/Tidy/IOScalar.pm
lib/Perl/Tidy/IOScalarArray.pm
lib/Perl/Tidy/IndentationItem.pm
lib/Perl/Tidy/LineBuffer.pm
lib/Perl/Tidy/LineSink.pm
lib/Perl/Tidy/LineSource.pm
lib/Perl/Tidy/Logger.pm
lib/Perl/Tidy/Tokenizer.pm
lib/Perl/Tidy/VerticalAligner.pm
lib/Perl/Tidy/VerticalAligner/Alignment.pm
lib/Perl/Tidy/VerticalAligner/Line.pm

index cb52ceaaf6078c4730c1ab194f144c548cf0ba4f..55cf8e3b3a2964cdccd3fb537f3a0851dff45b59 100644 (file)
@@ -1,6 +1,9 @@
 # Perltidy Change Log
 
-## 2022 11 11
+## 2022 11 12
+
+    - Fix rt #145095, undef warning in Perl before 5.12. Version 20221112 is
+      identical to 2022111 except for this fix for older versions of Perl.
 
     - No significant bugs have been found since the last release to CPAN.
       Several minor issues have been fixed, and some new parameters have been
index 82060f0d00be65d653f44e98f8cb38345a2fba31..ec86b27b9b4228d1da93ca91de4ca3c697cacd36 100755 (executable)
@@ -5426,7 +5426,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20221111
+This man page documents perltidy version 20221112
 
 =head1 BUG REPORTS
 
index 749d9dafa6c4ac9d3b7d2a8eeb16f2f44f14b398..f64cf1d947ae96f6298272da1cbc58bba50e459c 100644 (file)
@@ -1,8 +1,11 @@
 <h1>Perltidy Change Log</h1>
 
-<h2>2022 11 11</h2>
+<h2>2022 11 12</h2>
 
-<pre><code>- No significant bugs have been found since the last release to CPAN.
+<pre><code>- Fix rt #145095, undef warning in Perl before 5.12. Version 20221112 is
+  identical to 2022111 except for this fix for older versions of Perl.
+
+- No significant bugs have been found since the last release to CPAN.
   Several minor issues have been fixed, and some new parameters have been
   added, as follows:
 
index 06eea5706ce0079ab77a9e26fd62378c925c5084..f81e27863ac50ae3265d03850610c24e0bf0bbc9 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents Perl::Tidy version 20221111</p>
+<p>This man page documents Perl::Tidy version 20221112</p>
 
 <h1 id="LICENSE">LICENSE</h1>
 
index 6bcea4687e5baacf297ff4e7d4c817aebbe94645..70df09d25bb7cea474c819adb31898149b71199c 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents perltidy version 20221111</p>
+<p>This man page documents perltidy version 20221112</p>
 
 <h1 id="BUG-REPORTS">BUG REPORTS</h1>
 
index 1bc9778569fb09cb1208008c7521e5d0b757fbf3..88f7c43ef002f233fa0bcbbb86f6c7a86f1a3b67 100644 (file)
@@ -113,7 +113,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20221111';
+    $VERSION = '20221112';
 }
 
 sub DESTROY {
index a09d1d804415d1455d09670a2f4713dc86b592c0..ae5381d14ed1731842a379a6965d4d009ce4fec5 100644 (file)
@@ -475,7 +475,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20221111
+This man page documents Perl::Tidy version 20221112
 
 =head1 LICENSE
 
index 8e29a9926ab1d0c17a1e7450f150eafcbe29b114..caac624ea39697be2b319d1c68b67477dbad7d9c 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 660f4230f6dff264133016d93fe95c23f3c1201c..4716271d9779e163361c9ebfd1626fcf560ae92e 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index b1bbd7ae0fa79e1eec386f88c5badcf1bdfa39d9..a111ce8f1723e33837abf7bc7475cbfe0d790d92 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use constant EMPTY_STRING => q{};
 
index c76455812193af28a66c22da567893fc33819ed6..67b7983ac8bb337ef61d5089d142420342dd14d4 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index cc4b02bde3fc40ee7706f19da8ae3cc727d76f8a..357b03b1257e0568ba4c72212f2f566dfc5a7672 100644 (file)
@@ -53,7 +53,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max );          # min, max are in Perl 5.8
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index ae287e1dbbd5603214663c8e6c4dcff8f0daa48e..62f69ebd6d69a5121ef02176bf12c28a5efdc1cb 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use English qw( -no_match_vars );
 use File::Basename;
index e8d5f8bb484d7f9906c155668638015883dba1ac..983258cab9b2540602818f0bee670bbcc28beebb 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use constant EMPTY_STRING => q{};
 
index 01c2555d285e3822f969099d37d7043077fae32e..f110fd70dbaa34138b09e3a9748db1552a05a83e 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 sub AUTOLOAD {
 
index d5fb34be0104f2c08c387238adff83921a9bb60c..2ccd8a1b48d7deb223c43c60a2d521c6a57a2ec0 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 BEGIN {
 
index 00d1357b32a64ace0ab15dcdf04a00dbc88e9d7e..a59f992748574bdc0a50d1ecaaeb0204c5b00e0b 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 sub AUTOLOAD {
 
index 4d8f8702c8ce9e921ecce249274738782e01f20b..111d75b4fcc111989138974f2e4280504d7e42bf 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 sub AUTOLOAD {
 
index 9ef8c51d531ac9ba5fb8eababcddccebb2b91a8f..389020d1016dce741ed9f4c6d2ac47958e1cb234 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use constant DEVEL_MODE => 0;
 
index 7ca91b7e19e3266109fc7f3b305b0bd04f2689dd..f1c43860d03895d12a6b8fea231772028acbfebd 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 4857b6e41d4246fd0620c4e6a5309633d75acbe3..41c684afb4498f88128553e126948e6eedb6f081 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 62c96bdadbae5f3239a6addfa032ec1099d5dff3..a1fcc1e68aaf7858059ea2651ad184f1f4929c0f 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 23097df05347dfe4ab312397cd7b290796e287e1..209b2e50b8b7ed61fb38d048072d9c56b8e2704a 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 1dc696b7074855cc15e6b597efea8e75dfc6b430..75fa3ac377221d91fd0625e4823016af78768051 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221111';
+our $VERSION = '20221112';
 
 sub AUTOLOAD {