bump to version 20221112.03 20221112.03
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 2 Jan 2023 23:51:46 +0000 (15:51 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 2 Jan 2023 23:51:46 +0000 (15:51 -0800)
21 files changed:
CHANGES.md
bin/perltidy
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 1f0e0d75d021c76e159d422785700771716d830d..493a8ddf716af887c1ce59129285eb345556aa7b 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 11 12.02
+## 2022 11 12.03
 
     - Added option --use-feature=class, or -uf=class, for issue rt #145706.
       This adds keywords 'class', 'method', 'field', and 'ADJUST' in support of
index b87df94dacca95de900fd84db5d83769908d9943..c76037f197dcc24beed4bd3bd102197d2f5a2e73 100755 (executable)
@@ -5485,7 +5485,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20221112.02
+This man page documents perltidy version 20221112.03
 
 =head1 BUG REPORTS
 
index 35e7d552786ae890a345cb82e9a4746f60b47a61..fce0be35b9601836fde8e6ba99cea34116890de0 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 = '20221112.02';
+    $VERSION = '20221112.03';
 }
 
 sub DESTROY {
index 42c2bdd37473ecddb4567b254854b8058b1264a5..c0596795f59f89031c34ff261e39073fa4c1b686 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 20221112.02
+This man page documents Perl::Tidy version 20221112.03
 
 =head1 LICENSE
 
index 18baa5f57fbb2fbe493c6d340630eee5c7c9d967..69c1b1ba90d07399bb9c4df51e8b921bde88dab4 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index f96682a13164b9c7cf0e1e8dbb4d9a94c89e7443..108721243a2eb3b80a103689a954715ae70388bb 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 9f10583dcafd43fa534a451f722d0fb765ee2c7a..db412e09e8a58732c904105985632d1124abad98 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use constant EMPTY_STRING => q{};
 
index 52258feb0e804404d434c1bc7622cedfbc5374b8..ccd7e39705bc5f2c78242686a7307adca86a6e8c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 7f103eab00b2e8320514e9227edab2c3f64aba2d..2e255cb7ebe21d90d3c965407209e11940221fd6 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 = '20221112.02';
+our $VERSION = '20221112.03';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 41f2911af783e3a80722be81df449539ee4507e0..73ac34b109d868e1abce26f88eb820c6ae7f0a73 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 84cd6e0caddac383ff05b6db9debbdb4725137e9..83f31d025fdc905b11a6054e8e577ac04eb68568 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use constant EMPTY_STRING => q{};
 
index d0309d69b024432df777c9f52e20c7184efc55fd..35fe50d517ab39b71d17d3dbbf3fd0f51675e744 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 sub AUTOLOAD {
 
index 80a46b12cd896c39bd63c7f2a53277c49b7e7b07..2721c13500ba8658cdf489867899a3e3cd9c73d5 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 BEGIN {
 
index 757361da56669e33684bec5d0518c0ac02d397cd..e4f27c2737045311ac72bb4dc3b64e72c6de630c 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 sub AUTOLOAD {
 
index 70f38d3a9d7926bbd3be7532f95e014539fce699..cba938e4c99f89e90662d6834238041e3c1af7c3 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 sub AUTOLOAD {
 
index 6fdccd7809e27334985b30fea3f488737a81865c..46da091dcfd6f2243696cce62b65eec89827ee8a 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use constant DEVEL_MODE => 0;
 
index 194869352788c391d2c41fde149485684bd60f86..f2282b2c090202a6bad959fd58a0618116ee90ae 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 820a36435eed58e53fac8f740e05f44cafd969c0..7b0fb8f0356ab967e09c75a4d380dc42eb1e31a7 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 8a59edcbc611f92c73767334b8bb38b893ec69b8..6ed419edb0ce731268bb04fd07b4fe30c1837a60 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 972d3b42c185cddeb54802d48c6be25ce70b84f4..337cbfad430c24c6bd4c5938dcf140b432102e42 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 sub new {
     my ( $class, $rarg ) = @_;
index cdba8716713fbd3aa568d7d5ce2981e02611de05..5d340dc4af3b7836d375c74ef4f85ecb7cf083e1 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.02';
+our $VERSION = '20221112.03';
 
 sub AUTOLOAD {