]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to v20220613.02; includes update for git #103 20220613.02
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 11 Jul 2022 14:00:57 +0000 (07:00 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 11 Jul 2022 14:00:57 +0000 (07:00 -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 b14107f326ec81d0dbcbb3a7fa4dcca08be8f999..18f6d44708c370df9e59b2df81ac291326288fbc 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 06 13.01
+## 2022 06 13.02
 
     - Fix for issue git #103. For parameter -b, or --backup-and-modify-in-place,
       the default backup method has been changed to preserve the inode value
index d7c57b58f2fd9eae3a62f222a1bdc3d09df60ce1..5c5649aa95b640e22eac98a5c82f255f31e078e3 100755 (executable)
@@ -5171,7 +5171,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220613.01
+This man page documents perltidy version 20220613.02
 
 =head1 BUG REPORTS
 
index b49abd29b4930877a19e6a71e261c5a3a35d1a30..54e3d1dc61c49296fd0c7a551719be0fcc232fab 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.01';
+    $VERSION = '20220613.02';
 }
 
 sub DESTROY {
index df9455d1e566dc760c3ba64fdbf633d7e83d3d0f..00872e3672f9d25ecf6834f2deb51f255d3123a3 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.01
+This man page documents Perl::Tidy version 20220613.02
 
 =head1 LICENSE
 
index ff8403e95db557ab629681ffd5c19fd2c929e5ca..bd4ca05684756f56c12d851234a2d31890435d39 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 67c2c13b5e58a65ebbb6cc14c8906d22eb512f34..28c55b055197bac692680aa94f045a8fcfe7e1e5 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index f63875c85c515f2a261f452b5977a62109232223..ef628b7673e8a3f3a220c6da67113d9709a85539 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant EMPTY_STRING => q{};
 
index c28501fcb8c762644ca241b3dbe0353c73e80db4..fdab83156a42176eb72377ce27a72fbbe88bb580 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 63bf45a8cecaac7bcd9b9b8a92b7402498ad6798..2840539c23de08edf039b0e5b25dbf308551d8e5 100644 (file)
@@ -52,7 +52,7 @@ use constant SPACE        => q{ };
 
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index b0a090cdd06e49d018ad4173f28a32d444453e86..03ea24a34e89c84761747b1741466406e59d6490 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use English qw( -no_match_vars );
 use File::Basename;
index bed0081a83c7df9c5c05cab50fcabcc174016df6..b5bba496505830af4088f12c684c7d3d2a2671bb 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant EMPTY_STRING => q{};
 
index 1b6c6f961a7f03ecf5246ba8e26c34cafedf975a..72264ac19bb5ed828c92f4926cdba998d9ae8ab6 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 sub AUTOLOAD {
 
index 44db0081ab75a0e79f304ba9b1af273ba712b62c..bf2beeb2e5dfff406c183e314af1723c42f443fb 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 BEGIN {
 
index f920312fbd9c8b021d2e49da7cc9ecd89a2ae0ca..07d29faeb66e6d12ce089924ec948c6a9d5b45d2 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 sub AUTOLOAD {
 
index 654dd2ea3b70341287b1bfcdc468ec4e93dc3838..adad51c9439dd443b00c17a8fb1a56c296c4bab7 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 sub AUTOLOAD {
 
index b9f653935f4ad507f06d11cf80a6f9845056191b..2c9b22f67eff3823db325ff70b28b2676e55948b 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant DEVEL_MODE => 0;
 
index 05d0690585726b0e3c5493eac31af5ffbb57c0de..443a397fd5832ab925e8117e840dc5e32e9f129d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 7e3b3d1eb27e4836fbf6df5fbf06f181aec516aa..d7e5b2a11fe5389c0fd2bc605a2eeea8444b0763 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index ab499b9e841311b0057d437f8af3993797f96303..3f851533310471c49cf3be4d632f84b7b2fa9c6c 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 27b5d6cbee6b91ae4f14ece7a28bda5cadc956d5..554aa16ec1695329070c5f06247c8f6eb4ddd39a 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 BEGIN {
 
index d52952121a8101e9cd172cafa901ec6c0bfaeebb..11dae129214798f2e3a92589a3df29d86cf18f7e 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20220613.01';
+our $VERSION = '20220613.02';
 
 BEGIN {