]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240903.08 20240903.08
authorSteve Hancock <perltidy@users.sourceforge.net>
Wed, 11 Dec 2024 16:53:11 +0000 (08:53 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Wed, 11 Dec 2024 16:53:11 +0000 (08:53 -0800)
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 47c721cb3dd5731aa740c96ddb7d91cba4957bbc..264de1f103217fcb3210364857ce1b9cd885358a 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2024 09 03.07
+## 2024 09 03.08
 
     - Line breaks at long chains of method calls now break at all calls
       with args in parens, as in this example from git #171
index 6faa9135e73cf4ecde5edf7c94e00d98029a3f94..306d80e4de80636cc675fa46bebfd898aa5b0909 100644 (file)
@@ -7325,7 +7325,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240903.07
+This man page documents perltidy version 20240903.08
 
 =head1 BUG REPORTS
 
index 00cb1556e0f6c6c2186df216d1b586b300040c5d..28e635c27e74ae384ce301328ffc702419d45881 100644 (file)
@@ -136,7 +136,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20240903.07';
+    $VERSION = '20240903.08';
 } ## end BEGIN
 
 sub DESTROY {
index 055ed47d4ea4eeca0d78efabbb3ef0031f39014c..73f58c5e3221b96e351c382fa1bde92bf883e5f0 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 20240903.07
+This man page documents Perl::Tidy version 20240903.08
 
 =head1 LICENSE
 
index 1d91bb7fff330b08b0c65147a6621f5db5b16de3..a3a540d377de9eb3a194ffbe1267b8633f8964a0 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index ed053c9dbd31f4ea8d95c202b331c6c26d693834..9f1ae80a0f4ea03ff2f55df336e2502de282cb89 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use constant EMPTY_STRING => q{};
 
index df5cb6010e3745281d13e388db1485e84aa4d966..8c0b29b2491447ee2c27d3580b8e2907f699209f 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 use Carp;
 
 use constant DEVEL_MODE   => 0;
index 83cff8f682c118f3cc890a90082124db3208518f..3e4d8fd3961421d56c4b63dc30af59edd98539c7 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 = '20240903.07';
+our $VERSION = '20240903.08';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 33dfcaf3c29e01d6b64eea79d59024c55ce675c5..9b3fd0920962c99193c1f97508cfa8b384dc296a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use Carp;
 use English qw( -no_match_vars );
index 2bbf0a993612fc5b1b1bc1bfe2b84d31c6834a6f..77341f495bd665dae4789e5a3b15b655c4501fd5 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index d04fc56763815a8ce6aece70e414f14f33989c2a..146b5cca6e71da6b6bd103500bf8f0c61409e818 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use constant DEVEL_MODE => 0;
 
index d10af4502728bf56cd4d1b6d7d88833dda23564b..68536b6a2bfa6547229f60f40187a4d006d66529 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 BEGIN {
 
index aacd4745882a229964664e275084d09ae9677fa5..883accf8d72dfac63e545781bf5522a86a2e8c72 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 use Carp;
 use English qw( -no_match_vars );
 
index 72b66c0f31ca12aaf0b10a313e9406d8f99b5ef8..b19d2eb28eec666560f39df79a7e6139c35b96a5 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 use Carp;
 
index 3ad8059d8381b4a7424efb325b133dc3e3e615cb..39a53c33784bcbfcda3dcf42cb14285dd10de6b4 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';    # perl 5.8.1 and later
 use Perl::Tidy::VerticalAligner::Alignment;
index e7cf0556f70a756a6867ca23a3f2f1f23bc55142..55c626db111a5c2e01dc89ceac49a4e4b4895f17 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 
 sub new {
     my ( $class, $rarg ) = @_;
index b1d17ef240794bc62fe459b4e0e9c1ec7728c7b9..ad0d58c1632bc8897bd2321a8f960359e5a97424 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.07';
+our $VERSION = '20240903.08';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {