]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to 20230912.07 20230912.07
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 14 Dec 2023 18:37:43 +0000 (10:37 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 14 Dec 2023 18:37:43 +0000 (10:37 -0800)
18 files changed:
CHANGES.md
bin/perltidy
dev-bin/build.pl
lib/Perl/Tidy.pm
lib/Perl/Tidy.pod
lib/Perl/Tidy/Debugger.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/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 7c0803c7ddd5d04a6a7f849e410aecf33634370d..25b2a8eebaf432d20f849bc8547923d1e0eb6498 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.06
+## 2023 09 12.07
 
     - Added --dump-unusual-variables (-duv) option to dump a list of
       variables with certain properties of interest. For example
index 3710b4951e9865f3488547d81f72d2b4d2a867cd..b8b51e256126f00138dabc7eec5e513a5f7d970b 100755 (executable)
@@ -6046,7 +6046,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.06
+This man page documents perltidy version 20230912.07
 
 =head1 BUG REPORTS
 
index 3e86684315639a0bdf4892b5287db91d511ef001..d85abc30ca6cb0ba65dbedf11b6ab42e4a985296 100755 (executable)
@@ -352,6 +352,7 @@ sub make_dist {
         my $fout = "tmp/cpants_lint.out";
         if ( -e $fout ) { unlink $fout }
         my $cmd = "cpants_lint.pl $tar_gz_file >$fout 2>$fout";
+        system_echo($cmd);
         post_result($fout);
     }
     return;
index 435fa21f083f6730d5f6451a9fcacd496abcf4ad..f91667695e351b5b642d5247353d6aa4d3781b30 100644 (file)
@@ -131,7 +131,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230912.06';
+    $VERSION = '20230912.07';
 } ## end BEGIN
 
 sub DESTROY {
index e4d65badce7a5f4315169f5831e2cffb5483644b..b7f1b7ec0ebbd44dadc899a20db7e79bd4946054 100644 (file)
@@ -469,7 +469,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20230912.06
+This man page documents Perl::Tidy version 20230912.07
 
 =head1 LICENSE
 
index 1992e62ad2b29cf40677bc499cd9b1c585d1ec6d..7d5fd90c30d2a3391dc0fb970a88d711c3ed6fac 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 08e05e16acb0604b263852543e9dad9f43da7b36..736115d5f3500341b04f238d95acb3253174edca 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use constant EMPTY_STRING => q{};
 
index b0e4b70bb7247465275338ab6bb531e47462cd78..8a9c3fc4d207da5a4ac219878ef9e78f0404d0d7 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index f8193942f4dfeff33e8af690311a631fbe0641db..f1ab6a5c19f24ddc1fec5a1ce40173a486979b3f 100644 (file)
@@ -75,7 +75,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max first );    # min, max first are in Perl 5.8
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 04bf5a3017313fe6881c7cb2ea52ee7960b804a0..07842d05621d00f915e11e4366f106e6f61673ab 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use Carp;
 use English qw( -no_match_vars );
index f5c54a3cfe06fc68248c2273d806b376f6cd8c44..0c0d391b45abfe132bdd310c99d197092c7aa44b 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 3db562c4a8c88f476dedfb7af3ae4da656cd0e97..5294efa1be91f6baf6839d2c71144ebf7628f5e1 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use constant DEVEL_MODE => 0;
 
index 5a62b0345842a7b6ef4b6b81fb31f489b38e0303..8258ba3e0ae13c87259c2348220f88ff8231c417 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 BEGIN {
 
index 935af1727c34febb52603ebb20571e040cd8416a..cad5bc814b15d3aead2970239190b10d2cb1b15c 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 use Carp;
 use English qw( -no_match_vars );
 
index 3bde8ef4f8ed3dc9114c976adb7b68957e100430..17ca350a6c4893280203f795c36c9075429893f3 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 use Carp;
 
index ded10d1864dd4692cb4f520ef2630ff697c294be..0daeba9247932b7d64c3ee6f9c93808330cf7854 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index 136364d00c9c7a8524468322f66bebb840344e8e..b128c3bcecddb2d09236d349a22582eed9f9496c 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 
 sub new {
     my ( $class, $rarg ) = @_;
index cc74b3c29062ac6caa925c2a0363d2f928d01b93..7b36a1e3d5751b86a627d9a78e85e138a522a18e 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.06';
+our $VERSION = '20230912.07';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {