]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20220613.01 20220613.01
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 5 Jul 2022 14:46:36 +0000 (07:46 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 5 Jul 2022 14:46:36 +0000 (07:46 -0700)
22 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
local-docs/Release-Checklist.md

index 0a89949c9c5d0c4d9d3dd08d6a710c2d65926429..043e0dce5bb940d54a12b5acc0cc3cafb5124e21 100644 (file)
@@ -1,6 +1,8 @@
 # Perltidy Change Log
 
-## 2022 xx xx
+## 2022 06 13.01
+
+    - Fix undefined value message when perltidy -D is used. 
 
     - Added parameter --delete-repeated-commas (-drc) to delete repeated
       commas. This is off by default. For example, given this line:
index 4a342acccddda85a365eaacea8b6bda1f3048068..40b3a967f954ca70ea1a214765ff693483f8f6b1 100755 (executable)
@@ -5166,7 +5166,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220613
+This man page documents perltidy version 20220613.01
 
 =head1 BUG REPORTS
 
index 70200294c608d457ac68b0f10eea32e3e191022b..7e61bc30fa8d7e271d46f2c86077ab84442e9cdb 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';
+    $VERSION = '20220613.01';
 }
 
 sub DESTROY {
index bbb6bfe466d676346d5da9ffcfb667c4622c55cd..df9455d1e566dc760c3ba64fdbf633d7e83d3d0f 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
+This man page documents Perl::Tidy version 20220613.01
 
 =head1 LICENSE
 
index fdd40079b9ddb7dcd22c779685f2d567e467e743..ff8403e95db557ab629681ffd5c19fd2c929e5ca 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index daa63da670b7d2e5deec035f12d3784b7bb86928..67c2c13b5e58a65ebbb6cc14c8906d22eb512f34 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index af81a0cfc3be11ee5ef8c243f8ff691306da712f..f63875c85c515f2a261f452b5977a62109232223 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant EMPTY_STRING => q{};
 
index f16a41126c341c6ed0138ee18a8efa418f41955b..c28501fcb8c762644ca241b3dbe0353c73e80db4 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index d59dacd81f5252eb958bc7c2bb7b8dcf9b1195b3..cf16b80a191693383cb051b535d99cc6874dd28f 100644 (file)
@@ -52,7 +52,7 @@ use constant SPACE        => q{ };
 
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
@@ -3095,7 +3095,7 @@ sub set_whitespace_flags {
         next if ( !DEBUG_WHITE );
 
         my $str = substr( $last_token, 0, 15 );
-        $str .= SPACE x( 16 - length($str) );
+        $str .= SPACE x ( 16 - length($str) );
         if ( !defined($ws_1) ) { $ws_1 = "*" }
         if ( !defined($ws_2) ) { $ws_2 = "*" }
         if ( !defined($ws_3) ) { $ws_3 = "*" }
index ac1abb2ba25cd0bf6ea1953069e9693fc6a3d449..b0a090cdd06e49d018ad4173f28a32d444453e86 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use English qw( -no_match_vars );
 use File::Basename;
index d74960f69ca35c20c9ea053ae8a14e7c161ada6a..bed0081a83c7df9c5c05cab50fcabcc174016df6 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant EMPTY_STRING => q{};
 
index 6f9f768ed1e95dd62462e4a5c2c3734ef5dcca33..1b6c6f961a7f03ecf5246ba8e26c34cafedf975a 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 sub AUTOLOAD {
 
index 635eb296759568b0e4bdd3cafc414db1f376e8b9..44db0081ab75a0e79f304ba9b1af273ba712b62c 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 BEGIN {
 
index bdd51a5174aa5e919e9f9722e70951eb28f6b8b6..f920312fbd9c8b021d2e49da7cc9ecd89a2ae0ca 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 sub AUTOLOAD {
 
index 47dd561b5173d1447c6d67e1f07ecb137339dad9..654dd2ea3b70341287b1bfcdc468ec4e93dc3838 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 sub AUTOLOAD {
 
index 5ecf143e95feb3c36d71586161b76946ff6c344a..b9f653935f4ad507f06d11cf80a6f9845056191b 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant DEVEL_MODE => 0;
 
index 93e54b3d9dbd6b76888eaa79fb9f2c93a5551c3e..05d0690585726b0e3c5493eac31af5ffbb57c0de 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 596076be6d0d8fa8b4eebf926e3c896617efb4ff..8a7490738acdb5bfd51eee16ad4b25a6b92894ec 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 55ef12763294ebf659ac3d9e5a4e37894bf24377..ab499b9e841311b0057d437f8af3993797f96303 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 078689bb312166ba32caa1a6fd83c64831024ec9..27b5d6cbee6b91ae4f14ece7a28bda5cadc956d5 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 BEGIN {
 
index ab679de33a15ff3cd66e9fe05fd127529d118918..d52952121a8101e9cd172cafa901ec6c0bfaeebb 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20220613';
+our $VERSION = '20220613.01';
 
 BEGIN {
 
index 3e44194bb4efe0936543b8cfa36e4e42adbef450..9fb606bc966f3489198d3d42d52a5938c96e1650 100644 (file)
@@ -14,6 +14,7 @@
       - compare results of the current version with previous version
 - review tickets at [rt.cpan.org](https://rt.cpan.org/Public/Dist/Display.html?Name=Perl-Tidy) 
 - review the issues at [github](https://github.com/perltidy/perltidy/issues/)
+- test perltidy -D on a large test file
 - compare formatting with the new version with previous version on all files in test area
 - compare formatting with the new version on selected projects and perltidy itself
 - profile with Devel::NYTProf with different parameters and compare with previous version: For example