]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240903.06
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 4 Nov 2024 01:09:48 +0000 (17:09 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 4 Nov 2024 01:09:48 +0000 (17:09 -0800)
20 files changed:
CHANGES.md
bin/perltidy
docs/ChangeLog.html
docs/Tidy.html
docs/perltidy.html
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 07f07f181b3a4d0266b539f5c24b5fdae00d4aff..d32e7cf0295e98dcff38b90155006b4f7174dff2 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2024 09 03.05
+## 2024 09 03.06
 
     - Added parameter --break-at-trailing-comma-types=s, or -btct=s, where
     s is a string which selects trailing commas.  For example, -btct='f(b'
index 2f52d7296e4c4a7ecfebd31ce3a9631a128e83f0..3fecd8b1ec82134ffe2faed03d8177ccb8237074 100755 (executable)
@@ -7200,7 +7200,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240903.05
+This man page documents perltidy version 20240903.06
 
 =head1 BUG REPORTS
 
index 789b5fea00b31904f9ea0e40202c4862cfc1607a..c07366bcac5d626b1cc300f4584a7ed2da18f62b 100644 (file)
@@ -1,6 +1,6 @@
 <h1>Perltidy Change Log</h1>
 
-<h2>2024 09 03.05</h2>
+<h2>2024 09 03.06</h2>
 
 <pre><code>- Added parameter --break-at-trailing-comma-types=s, or -btct=s, where
 s is a string which selects trailing commas.  For example, -btct='f(b'
index 6430385238900906eb60604bf3b450ae314e4464..0014beccc667212ebceb328a725eb6e4c53ed219 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents Perl::Tidy version 20240903.05</p>
+<p>This man page documents Perl::Tidy version 20240903.06</p>
 
 <h1 id="LICENSE">LICENSE</h1>
 
index ac58ef6e879bb42a2027ae498fd671594948d5fa..51fc1fe9446df90a43c33f3d7db0d733c2ad3ec8 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents perltidy version 20240903.05</p>
+<p>This man page documents perltidy version 20240903.06</p>
 
 <h1 id="BUG-REPORTS">BUG REPORTS</h1>
 
index c99affd4969f1c923b4a94840bf43b8bddfec249..62a076060c61fd5b6661ffc58c29901c9d050a21 100644 (file)
@@ -135,7 +135,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20240903.05';
+    $VERSION = '20240903.06';
 } ## end BEGIN
 
 sub DESTROY {
index 233e35384f33574a0289a232180c99f18615ce8d..4224d030dda1892bca4d6f1b9232d03504bb114d 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.05
+This man page documents Perl::Tidy version 20240903.06
 
 =head1 LICENSE
 
index ab59a8bc2bbab1ec553e5b5a3cfa64154d4749ca..1596b6fb151824017b91be35ea5c1330e5452bd7 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index fea86068de6309458b3851175793a64159dfac35..fd3da009e28405e0cabd7834bb1dc8d66007d009 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use constant EMPTY_STRING => q{};
 
index 7bb87dc7cfdf4d840b39de0f84c364c4da512f22..0b0a8df6a50eedaa34077280ddd0f2d0ca0418ac 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 5ae2f720ee11cd2464ded90550d9e4911f08acbd..c8db51277ddb8943df856ffedfc4f66794295aab 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.05';
+our $VERSION = '20240903.06';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index e0a113e045de623b0377a949d1a4f84c7b0726a7..6722faddc5f250347160d9d7e2f3d80c4e97221d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use Carp;
 use English qw( -no_match_vars );
index 81d220700b39c1f7b9b05e74da1c882e8c774504..46174da06522d8ee563aca8446fd409357972a8d 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 68393186dd76f2e1e11332fdd42724bf838f9e44..2f4912d0268631c5f9e3c96ca3a561af3d76587b 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use constant DEVEL_MODE => 0;
 
index 6a4d97a561ef655e06464114f81d1f82aac216d6..1816d4255578f739250bdc11d33100c3baaa1cc7 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 BEGIN {
 
index 3de6eaedf7eb994cd38415605fa86babb48f97cd..fed920df8b995f82079abd0c414b0f71113b7eb5 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 use Carp;
 use English qw( -no_match_vars );
 
index 9b779689ed251e802a12daaffb6265e28ea52c35..1dbd945f732bbfa541aa642ad355dd197f87a227 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 use Carp;
 
index d2af820d8f3aba41c6593c9bade6ca52c4874a23..7eebc14a066a92201f5eafb8f8cc9abc85e51c6c 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';    # perl 5.8.1 and later
 use Perl::Tidy::VerticalAligner::Alignment;
index 019698f436549b9c117f2ed73bc31025e1b9167e..034248822ec7fbb1a4486ced01a5f330f57154d5 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 633694d9510171aac0ddbaa5f508905fc6055f9c..afaf8a2db554bb61ab05fc49c95df299c75dd34b 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.05';
+our $VERSION = '20240903.06';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {