]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20210717.03 20210717.03
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 18 Sep 2021 15:39:51 +0000 (08:39 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 18 Sep 2021 15:39:51 +0000 (08:39 -0700)
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 fc69d3df404e8f7780db2d3db54b7ff7a1342c5c..4acb8313859d1a60194c56f2652452eb01dd2a54 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2021 07 17.02
+## 2021 07 17.03
 
     - Fix issue git #73, the -nfpva flag was not working correctly.
       Some unwanted vertical alignments of spaced function perens
index b847c2526640d8019c4837d8fc7c5e902de88fb6..05956e1035b04fe74acadb0239cf4a369988af5a 100755 (executable)
@@ -4824,7 +4824,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20210717.02
+This man page documents perltidy version 20210717.03
 
 =head1 BUG REPORTS
 
index 0866f6a593da4fcad18501d3f93f8e1db597f14e..b722de119ac0e877b8be88ce508611bbdb48872e 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20210717.02';
+    $VERSION = '20210717.03';
 }
 
 sub DESTROY {
index b44dacf02324f0cbabed1be999fc9490b8b5c8c2..9248dfbff60cd968a5834f0a68298482b2445612 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 20210717.02
+This man page documents Perl::Tidy version 20210717.03
 
 =head1 LICENSE
 
index 9a11f6c14571860258887bff0377f805651db392..1ea1039e4775b16bcd5ca624fcf71914cc3a4bd4 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub new {
 
index 4f003c5e1047b49308e8d9ff1a16778b08d0153e..839f2238d41e1e2b37b1ff6699b95997d4b6c518 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 13db3ba2b21d34e75a88ec64d566db2c30116eef..880e30ecfe60388a037aee1651ee18a4b5ede142 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 89d226f374cf80329a22203235d54a895c77efa4..2f95ddb151a23f7a236dfa4b071e30f324edc1e0 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 use constant DEVEL_MODE => 0;
 
index 1b0035dd3a72c665b357c277c41192aba9f31030..e3e48682a169c86a84d6ece6d0a3c1d1c457e4ab 100644 (file)
@@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0;
 { #<<< A non-indenting brace to contain all lexical variables
 
 use Carp;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index d957b15404cba153887da12e0da389c2c0f69326..a9243a8624ca4b38a2ef956032af24099d1b5902 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 use File::Basename;
 
index b4e7a26633ed5191cb7286f01c76bd398fe61088..fd55789f2dc005bc9f0f90ed019c1b42aa126ec1 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 7644d562c1497b2675fed29402ce83f46561e08e..0f2b0ad9c620db44bd0626257b97be576368ff04 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 547a0d1ff24cc6728b0b31fa9dcd82c09b9aa182..8296e58cbad38b80b79bbc3b3a874b540360b9ba 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 BEGIN {
 
index e2fae0bdc51612e429178507e4f6d8edc1235862..ba584ae4129d99ccbd73131d424ea8345b934552 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 2361d0215e5ec693e5bc0e3e7f625b97df7f77c6..73e694a42658f97ccb1535945be4e85abcf8672f 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 7f7950a63338af48e77eba9c547d9c60116e238b..6ea80ed72f6288c2bc4cce93daa9b992dff12a82 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index 668b661c2806d5bb9fe59ea9af1f4d3fde400c43..57d7633e4f06a8f6aae665441e90f22e7bac281c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 sub AUTOLOAD {
 
index eefa467bfd3e4cdbeecb407f064beaa0a74fa6e4..4e8046a256fc10950b5f5994d9d3c60325865160 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 # this can be turned on for extra checking during development
 use constant DEVEL_MODE => 0;
index 32bd8656d9f6418f22ff0b848c5e2d7057854870..5255c57c49f9d8e11079857bf6b3635da40e4272 100644 (file)
@@ -1,7 +1,7 @@
 package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index c077d4c1ef926fc059741d690944ae252389682c..593a07b1277ef6c9250f17d9731b351314280935 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 #    _column_          # the current column number
 #    _saved_column_    # a place for temporary storage
index aef9e6de2bd062433f1203141bf974782f0aff27..db606f1ca30565f3c257da05158633f9bd7195c9 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20210717.02';
+our $VERSION = '20210717.03';
 
 BEGIN {
     my $i = 0;