bump version to 20220613.05 20220613.05
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 15 Sep 2022 13:20:53 +0000 (06:20 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 15 Sep 2022 13:20:53 +0000 (06:20 -0700)
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 283d18b392c7db98d4790da6f3ed782c708873b3..0eba24c709905bfbddf90ae023261ecc5a097085 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 06 13.04
+## 2022 06 13.05
 
     - Add option --weld-fat-comma (-wfc) for issue git #108. When -wfc
       is set, along with -wn, perltidy is allowed to weld an opening paren
@@ -21,7 +21,7 @@
             some_other_arg3 => $bar->{'baz'},
         } );
 
-     This flag is off by default.
+      This flag is off by default.
 
     - Fix issue git #106. This fixes some edge cases of formatting with the
       combination -xlp -pt=2, mainly for two-line lists with short function
index f47710e79090939053e2eb365b0af3b27dce6b06..7c2b66b4e4e929f730372160efb9f4380a9ce6b2 100755 (executable)
@@ -5184,7 +5184,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220613.04
+This man page documents perltidy version 20220613.05
 
 =head1 BUG REPORTS
 
index 5ca7c884ab3bc2b5e59a2616edb34af377df0aa8..9b12f18526eec19b5a5206c49454caed3f885843 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 = '20220613.04';
+    $VERSION = '20220613.05';
 }
 
 sub DESTROY {
index 62e9c2bfc4bf72810b7c0aa719f1818213c2f794..e22425ac4e6ef63d994d73e3d204ae201ace4ee9 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 20220613.04
+This man page documents Perl::Tidy version 20220613.05
 
 =head1 LICENSE
 
index 6a7b729d9e55ed750ee26ea54119478942706e1a..6da618acdcaa70280bb847c827901a4af5608ec6 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index e6a9d863dd6044df8b318f6c01736d63ff204696..be43988186656a99611835f091ec94b0f639c4c6 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 29858b5f792ed0f5940d7ff86d1a74ac8a423a13..254e7801178e4abc1ca52ce5830b3077a966e48a 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use constant EMPTY_STRING => q{};
 
index 32e5f79a3789a1ff5494e6722164af4fd38a9a40..2fd1c32d8d7b66ad93deadaa15bf5160c39c06e9 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 2cad413296f7d5b4327c247307a43c0e8de3bd0b..4a3c86f6204e3953006aa1dec006279152bee64d 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 = '20220613.04';
+our $VERSION = '20220613.05';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index af32cfae91cd491f12daf3f10a0af9a066d463ce..dd1a79a19ec26802a10905699054347f5e7ddac3 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 6ce9805c745345cbb61b1d786a2413054569673e..476a04dac26fe315f55986ee5408879d3ff22709 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use constant EMPTY_STRING => q{};
 
index 849909b724ae67230362b0a9330932d91bca12d6..695bdd97c88d38476eb71bc6499dceb903c5e5c8 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 sub AUTOLOAD {
 
index ef82c73949e09db73d011ffd441eee8dfc58b67e..151e36e2adc8ed389c1d45ea51026ad922d5ae4a 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 BEGIN {
 
index 02774bd04e39c220fab762e390e6174fab235beb..96fbfb155ab78f46a34c8a62872c4d08cb453bb6 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 sub AUTOLOAD {
 
index c5105b0c1525a6a1b0ef809fd0b28f6ed07b13cd..36521ea9199e56f8e3c3b3a5d474536d0810cea9 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 sub AUTOLOAD {
 
index feb2062d1450bc896be6b73e7bb51b80e809e2fb..90551fa4e645b387b9d98ecfd013fca154750fba 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use constant DEVEL_MODE => 0;
 
index 7a94a114fbc1eaff1399bd4be10ea39038fe761f..77d2aac8294b9c14c08ef1a8c38710b57fd824f8 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index cf102b27e79812691bdc01f8d3483b54d4619f2a..e869eb5c3279d2d900bf20e71fb945c00061b337 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index b15fd84e622dbf059ea03d095a2957c5e1e382f9..b536a0db63bba7dfeedc58e330fd936e2de2f842 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index c22edc71bde79cd58d4177f0dbc66fdc6c17403d..a3b312bfb7e9008249c1aadf55a57620eeccb1a9 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 98839410843ec8433f043dc98ee00e1b60c45f6a..378a64368351c4651f36f9aca8f0bb46a1cbffe1 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.04';
+our $VERSION = '20220613.05';
 
 sub AUTOLOAD {