]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20240511.08
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 1 Aug 2024 00:59:32 +0000 (17:59 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 1 Aug 2024 00:59:32 +0000 (17:59 -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 fa975bbe6c2046643af0c42c12193263f3ff924c..47cef5476278ceb44cdbea5fc64dd9ee5ba1f352 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2024 05 11.07
+## 2024 05 11.08
 
     - Add parameter --closing-side-comment-exclusion-list=string, or
       -cscxl=string, where string is a list of block types to exclude
index d771dc06a54f80d5fb9dfc639906932a897fe88e..233cbce4e0034ad56cd5f0b645a48afa50f495e6 100755 (executable)
@@ -6863,7 +6863,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240511.07
+This man page documents perltidy version 20240511.08
 
 =head1 BUG REPORTS
 
index 92c9e737e45efa624b7123bc1d6b1be94de8ef3d..31f9363a94ad2ddcb8ccd5725da5d5b08e06fc65 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 = '20240511.07';
+    $VERSION = '20240511.08';
 } ## end BEGIN
 
 sub DESTROY {
index c37dceb55d7be712ed3d2deb84859c3cadc3737a..d56b357f27a8320258aa4b5310f7a8cb1cec0e28 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 20240511.07
+This man page documents Perl::Tidy version 20240511.08
 
 =head1 LICENSE
 
index 7748a384bcfd750108b5006eb4df64046bd7f20f..ad58c8cdcb275170875364607829eadf03069e6b 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 7b17f409d4c9822f4fb13ffafb4fc49e2fa0a5e1..357cedc77bdf6ec6461e0a2899b13bc47d576856 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use constant EMPTY_STRING => q{};
 
index 9f3524253336a7150894bd9b889015bc31f79a36..51646fc030b5fc365e1fac1bbf6b0399214ae5b2 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index e402ef25e5f1139539acc2d5d3777a959e4b6324..85aaaa31fe46d02293d6bc5eb2b0c90f48e0b1d6 100644 (file)
@@ -76,7 +76,7 @@ use constant BACKSLASH    => 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 = '20240511.07';
+our $VERSION = '20240511.08';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index e626731aa5960a5ee73a4f30238c07bb8fefc24b..a06dcd0867a32ba4007c24a5181ef8d68f94ede2 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use Carp;
 use English qw( -no_match_vars );
index 28e6325d290871bd57dc55cda71c7369017d08e2..23d96914350f0aafb32e883a14d338d43282883c 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index eaea94bc16acf8eac0fa4cde287699f25a3faeed..70dcc8961b9d487a4d8d5a12c655cdd13d9422da 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use constant DEVEL_MODE => 0;
 
index 4395d67c35a81a78150d9d9312bdc0b7ad7a02ef..3d07471dc71c0b05ef4b7877dbf92d65b37def35 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 BEGIN {
 
index 97d5db002b53afb31e19f5fa5fc411321ef1e0d9..3376435d74c4f86de9727238c1efbd211235f65b 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 use Carp;
 use English qw( -no_match_vars );
 
index 3708b3b7281d54639cc9d932fecf61cb0cdebde1..0ff5331beb497120523a480ca657273e4c53b7bd 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 use Carp;
 
index 0a43b4bc3dbf412dd89d1b8ea460e0f8a7cbf9a0..97e7e14634f9009b609d597566e8a83c97ac7c7b 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';
 use Perl::Tidy::VerticalAligner::Alignment;
index e51da68729f26eb2ea2c5d86afbf95c9b2bff011..a22f43e6da61fdef5e535600c8ac49099b96dca6 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 8212e481337b828e9e57b8dfd17295dae4d3d777..ca2033458e524e8e28ebabfa1d2d6632df9306a5 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.07';
+our $VERSION = '20240511.08';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {