]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to v20220613.04 20220613.04
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 13 Aug 2022 18:16:53 +0000 (11:16 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 13 Aug 2022 18:16:53 +0000 (11:16 -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 ebdf7b8676252df03a0f62df6e259f72b40b487b..bc61bdd7df28fdbb5da78311026fa6a74ca0e3e5 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 06 13.03
+## 2022 06 13.04
 
     - 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 35f99f826e5a61bb5f31ffd418825086ac2bae67..e63d3f5642955cce95fa6821e50b297a3eb10209 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.03
+This man page documents perltidy version 20220613.04
 
 =head1 BUG REPORTS
 
index d040958b428ec29815981a6f5560f10976e9ad59..0f76aea188037e790e6204ba1e05317554b90c1b 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.03';
+    $VERSION = '20220613.04';
 }
 
 sub DESTROY {
index 0bf93866d34f39678cfcb6bf56059e32fb294f6a..62e9c2bfc4bf72810b7c0aa719f1818213c2f794 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.03
+This man page documents Perl::Tidy version 20220613.04
 
 =head1 LICENSE
 
index 15f5fab859ecab5f7efeb395eb595298a1c7bc37..6a7b729d9e55ed750ee26ea54119478942706e1a 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 2e9b88166dd733a391ddd6fb961f5c76d8cf38c1..e6a9d863dd6044df8b318f6c01736d63ff204696 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 8d296492611db8d02683d1f1381d4f0a9fc08f9c..29858b5f792ed0f5940d7ff86d1a74ac8a423a13 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant EMPTY_STRING => q{};
 
index ba86003105a16e84e8537c04eb4ce8381bda4395..32e5f79a3789a1ff5494e6722164af4fd38a9a40 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index f09171f6733c30db87c1000dad1b13ea34d9ceb4..25ab6d00536d70f2f97f01671fa7fc91ed4c8df1 100644 (file)
@@ -52,7 +52,7 @@ use constant SPACE        => q{ };
 
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index fbc4bac877703b5dd1341ff7704d63782163fc25..d777496380b90a5f14ced025d5dfb8de53b4d562 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use English qw( -no_match_vars );
 use File::Basename;
index ea88078d1074a24727b735a1616d7c29c585ab0d..6ce9805c745345cbb61b1d786a2413054569673e 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant EMPTY_STRING => q{};
 
index ee83ce8d6c4d148a89fffb206c667c417e412115..849909b724ae67230362b0a9330932d91bca12d6 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 sub AUTOLOAD {
 
index a3bb40228769837c94067a831e942236991cf796..ef82c73949e09db73d011ffd441eee8dfc58b67e 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 BEGIN {
 
index 104ef8e3e341bb2cb62ffbefbffb9dd55d4b40cc..02774bd04e39c220fab762e390e6174fab235beb 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 sub AUTOLOAD {
 
index 564c1a9ed9761d3c4a61877950732c302f230973..c5105b0c1525a6a1b0ef809fd0b28f6ed07b13cd 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 sub AUTOLOAD {
 
index bf794f8229193b6e240f3f335d9a2912b0aeaceb..feb2062d1450bc896be6b73e7bb51b80e809e2fb 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant DEVEL_MODE => 0;
 
index 138f48eb0c311a0bcdac2e2b2020a08eb24b7291..7a94a114fbc1eaff1399bd4be10ea39038fe761f 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index ab8bf4c39a638a6dbdf9bfe37fb17d286a545274..a9d01e326d4dd70e398317b145954cfa7775fa3e 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index b8ac814101cd94d97f0a8469a4691ef32e81d2d6..1ea97ad2e4027a2c601b7272f691f4203f1e125e 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 99cfd654ea290693efcaeb3f9ac2d893593616a3..c22edc71bde79cd58d4177f0dbc66fdc6c17403d 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 sub new {
     my ( $class, $rarg ) = @_;
index ed17a42d15fe92db28843d292609816d1849d1aa..98839410843ec8433f043dc98ee00e1b60c45f6a 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.03';
+our $VERSION = '20220613.04';
 
 sub AUTOLOAD {