]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20230701.03 20230701.03
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 24 Aug 2023 02:38:40 +0000 (19:38 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 24 Aug 2023 02:38:40 +0000 (19:38 -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 b628eb25a6f868d8f7ffb7cb48cd0a7c1fdccea2..be348a917ec203025cae908f5ba9bb83f35f2905 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 07 01.02
+## 2023 07 01.03
 
     - Issue git #122. Added parameter -lrt=n1:n2, or --line-range-tidy=n1:n2
       to limit tidy operations to a limited line range.  Line numbers start
index 3d3dcb67868188cce900a891a80d5a3a1796c853..eaaa98d3ee74cad397332fda33318e07fb187e7d 100755 (executable)
@@ -5795,7 +5795,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230701.02
+This man page documents perltidy version 20230701.03
 
 =head1 BUG REPORTS
 
index 537125c930edde6a092b6db0e0e689da7e6058c1..3e7001906db6791f2599bb9ec6696a691b305d8e 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 = '20230701.02';
+    $VERSION = '20230701.03';
 } ## end BEGIN
 
 sub DESTROY {
index 3954bf92a9f2c1bc90caee1b18a70841ae498074..baea366c572b6bdd179881b76d1cced712515dc0 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 20230701.02
+This man page documents Perl::Tidy version 20230701.03
 
 =head1 LICENSE
 
index 4489b706a926f831f6e41d608a4c69cff1864535..e7112993af43389fd7005d79bbf4d319ea0feffb 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 60f7a998c8914686aa2e25e02f43506bdd6b2b3f..0a5b576058eb2f0ceed2f1b8341ffbfccb774b1e 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use constant EMPTY_STRING => q{};
 
index f9596efd29d750461f2fb7a06349827016ae047c..69674a844157dea466a7d5077f98feaa363ea194 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index c950b0bb2b72499751d2f2942f32a8881013e3da..7212d7ab1b6ad243b2ff2c74a157eefbe14b17c6 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 = '20230701.02';
+our $VERSION = '20230701.03';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 7565944a9cbee67cc1700f1916195c8eb8d4b756..db399042f9530e608c746a1b887dad23405b8a2c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use English qw( -no_match_vars );
 use File::Basename;
index c83583a8d78e3eea54f3635e3662e315c95187a5..d8f80b46de003fa520bdfa58e2527c7cc7f6582c 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use constant EMPTY_STRING => q{};
 
index b4fc4443b6102ce4ba646d706d04c447061465b2..197f17059a979762fe6ffc1ba42803b8aa0e2142 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 sub AUTOLOAD {
 
index 05545a0e325d0cc9ec8d2481cc82f20e20954ebd..8fbe34fbfab71f13bb87216d8fe827d7416bd9c6 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 BEGIN {
 
index 8470784cc47f0aed71be67d0ac516e8bb20a427b..ef07c21409c624468d375680d917a5ccf6df4900 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 6b70a76d9d082aea819675c6b5c78d1a6b7f864d..a7457dd8d26dff59075723c0f1aee4198f65666a 100644 (file)
@@ -22,7 +22,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 use Carp;
 
index 080099ad7282fdf0827a01846b4162337988be98..dc5f4751b3774d4eebbd4b8799eacf799a186d1b 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 678b8908847250a4ec2aacf695b6d1d4ce22efb3..3f396f410bb4c9a0dc2cea6c5f52a3fa2091451e 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 00e00c66fa2be989c432f06a1251149a6a67ce13..4ad8aec657d08d90f28b83da28c8e6c6625e6f4f 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.02';
+our $VERSION = '20230701.03';
 
 sub AUTOLOAD {