update to 20220216 for minor doc updates; no code changes
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 15 Feb 2022 16:17:55 +0000 (08:17 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 15 Feb 2022 16:17:55 +0000 (08:17 -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 64812e3f39944df09e3ca96fd6f406b972e38f1a..cdc0490b1a004425ae1f8cad9d2e23680fa442d8 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 02 15
+## 2022 02 16
 
     - A new flag, --encode-output-strings, or -eos, has been added to resolve
       issue git #83. This issue involves the interface between Perl::Tidy and
index 149f46d7c2f33e5709566b1ea947d3669d846c1c..d7a9a8dcdc5824a826e39caa865a8d4acd89a4e9 100755 (executable)
@@ -656,11 +656,13 @@ background information see
 L<https://github.com/perltidy/perltidy/issues/83> and
 L<https://github.com/houseabsolute/perl-code-tidyall/issues/84>.
 
-If you only run the perltidy binary this flag has no effect.
+If you only run the B<perltidy> binary this flag has no effect.
 
 If you use B<tidyall> with encoded files and encounter irregularities such as
 B<wide character> messages you should set this flag.
 
+Additional information can be found in the man pages for the B<Perl::Tidy> module.
+
 =item B<-gcs>,  B<--use-unicode-gcstring>
 
 This flag controls whether or not perltidy may use module Unicode::GCString to
@@ -5137,7 +5139,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220215
+This man page documents perltidy version 20220216
 
 =head1 BUG REPORTS
 
index 153320d97e15d663a82a03db5b7e658af6317b34..22019bdf84578bbd8f92c608c9549b2b067e4532 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20220215';
+    $VERSION = '20220216';
 }
 
 sub DESTROY {
index 7254d3b1fb87e41212531655757fc40b63f42f71..4aaf0c37ef52ff11ba8e5d4cc972dd5304da80c3 100644 (file)
@@ -89,8 +89,8 @@ of two possible states, decoded or encoded, and it is important that the
 calling program and Perl::Tidy are in agreement regarding the state to be
 returned.  A flag B<--encode-output-strings>, or simply B<-eos>, was added in
 versions of Perl::Tidy after 20220101 for this purpose. This flag should be
-added to the end of the B<argv> paremeter (described below).  The options are
-as follows.
+added to the end of the B<argv> paremeter (described below) if Perl::Tidy
+will be decoding utf8 text.  The options are as follows.
 
 =over 4
 
@@ -482,7 +482,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20220215
+This man page documents Perl::Tidy version 20220216
 
 =head1 LICENSE
 
index ca27749640cf2a6e945bfb1ffc45e3c4605fb04d..02194827f7e310477514b7c0ed4defda602c55b5 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub new {
 
index 0feb90ff5e816f0391b76f538871f6e7a01c558a..e2ddc2da6a06ea4da257db6a2d63e1cce46de587 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 7b757150a4359bc25f2e1f950fc9bfa10bfcf3da..53dcc371fe17f5143b03557cd530a779649b792f 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index 7230f1dd6993f943bac2df29c9d269fffe8257cf..7fd66fb943b7b57bc7aed7e6870927b884f2405e 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 use constant DEVEL_MODE => 0;
 
index 4c11f6ebbe2a1efe1753b507cdb82e6ced467501..8f60c4267ccc31772f7996f8fe2316271b509930 100644 (file)
@@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0;
 { #<<< A non-indenting brace to contain all lexical variables
 
 use Carp;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 2e76945862ff13b90206363bb7c64eb79155a5ed..b9f7532ae4fc9a6e21b4b13b176ac5d0c9ff3b2d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 use File::Basename;
 
index 6a3208ddb8e826ed1dbe427deeef52d56335f429..3d1969ddbd400f27a559885409103219a4765498 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index cfc7d8d3623714c7d02d3373f99711f9f188091a..ab323f0e9f6927b535eeeb8b4be40b9aa25db62b 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index 427812b262effb4c538d73daf1f9a7251c4f7ce6..12eed89d000c183624035a442a93f28125ae0285 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 BEGIN {
 
index 4e32269cdc797a54f263d495218378d2339e0dd1..75595f1c6bdc694d38ede526c32b95ea29036fb6 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index 810e14c5c63b57b9463cd79fed533a3890b50d32..2e6b1579c0d123eadcfeff2eb0563a8fb91fc46b 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index 4cb7732abcc68ba1b64bad77aba144e26398ee50..fdadf75a69ab2894a69c702580d9bd6e43b12ca4 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index d6569c3c972a384e828e4c8a77e50cc7957584e9..e11758e96ad7b4c5ab5db50c30a4d6eb83dbd33a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 sub AUTOLOAD {
 
index 4cd5daaee7ccc26ca3be5a5fb7e05185e6110145..4e786d42d04791f3ce480af07ba55579a44fb9d8 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 # this can be turned on for extra checking during development
 use constant DEVEL_MODE => 0;
index 56a59ab8c7e1552d337b91c198dd3316012d54cd..c9132916cf1d6ed3403b997edf21a32e515be13c 100644 (file)
@@ -2,7 +2,7 @@ package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 2dee7c6a808a7f1f5d1bde9956c014b9aed7ada7..9d99843417395636f49a4f7dd2d909af3a411079 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 BEGIN {
 
index 53bc561c910c333b1859729748cffa58d024abda..b8b55a2ea8c6d4e4139c32eaf3ceaf4cf2c3bf36 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20220215';
+our $VERSION = '20220216';
 
 BEGIN {