]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20211029.03 20211029.03
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 29 Nov 2021 13:46:13 +0000 (05:46 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 29 Nov 2021 13:46:13 +0000 (05:46 -0800)
21 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/LineBuffer.pm
lib/Perl/Tidy/LineSink.pm
lib/Perl/Tidy/LineSource.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 8cd85d095aaf9ae99cf0d3ec8658885d88ba871a..744f93f808f52663b0ac0b5ea10ec64a1c3e531d 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2021 10 29.02
+## 2021 10 29.03
 
     - A new flag -xlp has been added which can be set to avoid most of the
       limitations of the -lp flag regarding side comments, blank lines, and
index 1e7b41e799b94193226c036ecc2fbab04ede777c..a074351462b7e501d4a11693fa4b5c79e474ba05 100755 (executable)
@@ -4898,7 +4898,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20211029.02
+This man page documents perltidy version 20211029.03
 
 =head1 BUG REPORTS
 
index 9b8f22448f791fdfd99350d93340945f44e19f1e..0615f2e833c8a9007917295c0b284da994030c65 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20211029.02';
+    $VERSION = '20211029.03';
 }
 
 sub DESTROY {
index 6f60eac04849401106da5228e07d45cc2ccd6f0d..408845f75e2a8f6f9eab7727c8c45b1c1a13cc43 100644 (file)
@@ -432,7 +432,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20211029.02
+This man page documents Perl::Tidy version 20211029.03
 
 =head1 LICENSE
 
index c4bc35b251bac4efc0fd8dcb2870e6d539bdac5a..24772a06d72b54067a499a4ea63663911377e1b3 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub new {
 
index 7704bfb4aa5a7e3cfe21cb8fe3596793bddf5684..439d45696a0398ce1b1a9a00d7f715fb276465da 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 7b78f0e9979c981c0c85e9f9ec03085fc25e4be6..705eb5f163a08249f4cfb73ff41518a581d8a02d 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index 5b6009ba8a3f600560216ba3a771923f07ce1cf1..fb4eaab29c6449175f0dfc9dd6ce4ac55749d75d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 use constant DEVEL_MODE => 0;
 
index 80a32399f6f43b17d2a8d72e9841ad9926621794..fcc0f8d3ed27c70ab40b125835708042b583c617 100644 (file)
@@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0;
 { #<<< A non-indenting brace to contain all lexical variables
 
 use Carp;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 6440c8847c77f2f76b64fc5b75e9c61c3f009d6c..ffd90b557e05b01f90cdd0c66b92d21ea00c2a6c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 use File::Basename;
 
index 61e65f7ba07c6420a4208bda88f8044391d607c4..601c5c5f76e9494ce2acf8fec49d6ec58ba04814 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index a2d3480402490b9121a3e81c82c12f76dabcf022..eec9ae07e2061de200d179e5536e5a2b0ffd87d1 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index 2366718e804d529b27defd4c26cbe1dca5586b4a..56cee1449b71acbc50c8faf51f82cce13f33b299 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 BEGIN {
 
index 1a6bebeb4f29a8c9317e7ab8458efa2712414c6f..40cf008251c3500f749a00d470616291c3f4629b 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index ca569eab3e6bfc7860705bff8a551faeaaf16518..f694120e1d4f8b97f308ed92b652b667cefb74ef 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index 9d169af9c638b3633b22721a9090b43e5350618d..8263f9b486c817a25c825e08642c3cd67b6330e8 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index f6aee81fde2862b88c1b2aaeb7d51c136ff27a99..386b214545debdaac8cf3eb9eda874d531ace2df 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 sub AUTOLOAD {
 
index 651e1a3ec6455cc756974d89c81b09ac45e41822..a752ebbadada028c7f5a140c23afa3eb116895e2 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 # this can be turned on for extra checking during development
 use constant DEVEL_MODE => 0;
index fc44fd2c5d04402e995074e59b2055709d4fa79f..cbed1fc6a79a179cf4b121fc9cd59a98bb82baa3 100644 (file)
@@ -2,7 +2,7 @@ package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 6372d092c3fc00d856beaf655c35f6dff017eb00..3845bbee63aa54188d80312033250b2e25ae20cc 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 BEGIN {
 
index 044ea7249371ea83e8af6e8f34657d5079af2f9e..5f285531dd81a231c1479215904404ce5eeba7a7 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20211029.02';
+our $VERSION = '20211029.03';
 
 BEGIN {