]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20230912.02 20230912.02
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 29 Sep 2023 22:34:01 +0000 (15:34 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 29 Sep 2023 22:34:01 +0000 (15:34 -0700)
17 files changed:
CHANGES.md
bin/perltidy
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 07d4976a63c3f2ce0cdea5fa9ff2a6f1232e6506..dfbfe9fe9fa9484a33c2d2f40106339f937b24cf 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.01
+## 2023 09 12.02
 
     - The dump-block-summary option can report an if-elsif-elsif-.. chain
       as a single line item with the notation -dbt='elsif3', for example,
index f3e3625192b793939c89291fbc194a591cf384b2..63836aa3d4c1e1b93bc1c2feaa50ee8b87835e16 100755 (executable)
@@ -5889,7 +5889,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.01
+This man page documents perltidy version 20230912.02
 
 =head1 BUG REPORTS
 
index a16050b0bdacf703ef9688040659867c3ef73449..bfb821787ae9efc58508259c2a561fc51e6628c4 100644 (file)
@@ -111,7 +111,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230912.01';
+    $VERSION = '20230912.02';
 } ## end BEGIN
 
 sub DESTROY {
index 7d67484bd4ff29d696124628e025a7214a0e29e1..421409a2ab5e2ea84b35efe8654e5cbdcae152af 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.01
+This man page documents Perl::Tidy version 20230912.02
 
 =head1 LICENSE
 
index 5566b344edf5c141f40c60a4ee6735172c2fe62c..4ee36ee9e73b538455ec13528337bb91a7b81132 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 016db93f147572e98edd49f28bbc0172028e9e45..96df67b55393e563683e4752526307c3ec38375e 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use constant EMPTY_STRING => q{};
 
index 2dd8cc7f509693f2dd426330efd16d7b12805ad6..227ddc067d098c5cb15a893c3bd778cfe877aabf 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 7f2b1e80306d2a0db0eab297c9e2f1beb644c1d9..f853109e8155fc03935638061db1d6b718e0d762 100644 (file)
@@ -53,7 +53,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.01';
+our $VERSION = '20230912.02';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index cd5b7717f9a915d81f9148ccd5e04f1cb4b5765e..014b4be3dd20773e23d0887dee512fee21388d2e 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 17104c7b84ab4a4ca360beeed361b4bb01a75013..f5b7b97c2883aeccf74abaa24a0bcda3f6400912 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index d398388fca994bb694588b641a4cfa297f9ab1a7..1f04df7d719ceb62bc3ba3688a49f90baf791594 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use constant DEVEL_MODE => 0;
 
index 50a5ea39937c7e31a4d1c794570b7874dd5241ca..8d5b9dc405da774b1a053157a40991dbbdd1731e 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 BEGIN {
 
index 05b9f06899056ce07b3781653f2371fd02ad051b..b25f75072d34ff413026b45bb39c4bb72d6f8607 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index a27b8abc6083d29b1f90ac66ee07c1fc4ff33aa7..c846a544259d15074f5f9ac33c9fa168c3c1eae5 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 use Carp;
 
index 57e2a8c0179c3614a08817cf43b28e8c55b51620..4227992d26c30ed40c78f654fe8a2a7ecccf3b6b 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 30b00f3c1ed2be7c77970e6b624f6a0435e775b2..c5a3178051e66251cd0bfd4f2eb94224da6b9469 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 sub new {
     my ( $class, $rarg ) = @_;
index e8f3f7eb7e1e1d52ab31104b35718a951a581260..927142fcd2263b21f5eb9c666028a324e103c3ae 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.01';
+our $VERSION = '20230912.02';
 
 sub AUTOLOAD {