]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20230701.02 20230701.02
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 28 Jul 2023 15:42:25 +0000 (08:42 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 28 Jul 2023 15:42:25 +0000 (08:42 -0700)
18 files changed:
CHANGES.md
bin/perltidy
lib/Perl/Tidy.pm
lib/Perl/Tidy.pod
lib/Perl/Tidy/Debugger.pm
lib/Perl/Tidy/DevNull.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 33a62e170cbebe48a55f778bb11eb36f0d4ece6d..e2292b59da9502a183d6dd67c7f650341eeeddbe 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 07 01.01
+## 2023 07 01.02
 
     - 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 ddb9af41faa710c8bb5f5d9c3dde8b26caf67754..1067f9dbeb19825ccd6bd29401e9e9492080a191 100755 (executable)
@@ -5776,7 +5776,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230701.01
+This man page documents perltidy version 20230701.02
 
 =head1 BUG REPORTS
 
index b7b9022dd3fdebbe93fc4b159913fc966ed7d949..433f60a52470887d8be46730c4a06e09d7295771 100644 (file)
@@ -112,7 +112,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230701.01';
+    $VERSION = '20230701.02';
 } ## end BEGIN
 
 sub DESTROY {
index 636fbb76351f91dc326722036fc934de12ea7cca..3954bf92a9f2c1bc90caee1b18a70841ae498074 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.01
+This man page documents Perl::Tidy version 20230701.02
 
 =head1 LICENSE
 
index c5efb74bb15f845ea8f422074d7c57deddc3dac0..4489b706a926f831f6e41d608a4c69cff1864535 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index b9f5d21726bb69add597a14aae7dd01f5694246b..4ee5198f8bdc27e7222f3434bfccb7e2bfdb38b7 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 798b72ac8c80c99e043d07e9ea99a8f87a24b74e..ba5137c91ae820934e03fb251cbc8841301eee84 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use constant EMPTY_STRING => q{};
 
index 7c4622768d22955d33bbc6a296b851dee79b0dfc..ab1cc063f1ec884f5d0385e35aec44d36ca69a03 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index beae1ff41cc4bd537f0eb4b33e6986c0fb49552c..714554e3ff4353f91f782f933f893c3961bac2ed 100644 (file)
@@ -53,7 +53,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max );          # min, max are in Perl 5.8
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 476dafde76bbc46d74e931d4455ad560eb9f6e14..c5f0b315fe408fcae621b2d794e8560b621dfe34 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use English qw( -no_match_vars );
 use File::Basename;
index d76457efa40f46fa8eec33238f70daa776c9ced2..195cf28e7d7316e1672d4d5b8279e93128ca9f90 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use constant EMPTY_STRING => q{};
 
index 3d0823f61a51fef548cf5b6921d1107eaf00f322..dbaf4555cd600d4aed9ffa1def8b9bc961e23149 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 sub AUTOLOAD {
 
index 9a48f47f60838fa8ff623707b877fedc05b659fb..59903ece440c18adce5abf451186402a94352ed4 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 BEGIN {
 
index c2d5d4ed4ede40384e2515ae3467a06d9b7eb6d1..be6b96482cc1869cb31bf5f12142be7f7336b6e7 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index e12ca04b629f05f264b4f9c6f573c9a049633aaa..846a0a23759ef6d82fdccd8f8c866ec1889be8ba 100644 (file)
@@ -22,7 +22,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 use Carp;
 
index 80abc751c2e46d22ca0fba03b1188130c985512f..ba326b2c433a1772300ef9e82c246578df59b632 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 542fe0d2a6a931d7bceb27f6d8d23e14808409e8..d3d7a3d64c6d74405368da37ef0252ca8b573e74 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 549f5d717e64714fb9438e9902d0325ed31b89a0..ad456ee93f727d76e737a103ffa1413482945cc1 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.01';
+our $VERSION = '20230701.02';
 
 sub AUTOLOAD {