bump version to 20211029.06
authorSteve Hancock <perltidy@users.sourceforge.net>
Sun, 30 Jan 2022 01:56:32 +0000 (17:56 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sun, 30 Jan 2022 01:56:32 +0000 (17:56 -0800)
22 files changed:
CHANGES.md
MANIFEST
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 cbb40a24d33413ac8badb5105086a8f8105ae4e3..25c20a695ccedf26535414828859c6f53907fc36 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2021 10 29.05
+## 2021 10 29.06
 
     - A new flag --break-after-labels=i, or -bal=i, was added as requested
       in git #86.  This controls line breaks after labels, as follows:
@@ -9,18 +9,22 @@
             -bal=1 always break after a label
             -bal=2 never break after a label
 
-      So for example, for the following input
-
-          INIT: {
-                $xx = 1.234;
-            }
-
+      For example:
           # perltidy -bal=1
           INIT:
             {
                 $xx = 1.234;
             }
 
+          # perltidy -bal=2
+          INIT: {
+                $xx = 1.234;
+            }
+
+    - Fix issue git #82, an error handling something like ${bareword} in a possible
+      indirect object location.
+
     - 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
       calling programs, and tidyall in particular.  If you use tidyall and have
@@ -32,7 +36,7 @@
 
     - The flags -kbb=s or --keep-old-breakpoints-before=s, and its counterpart
       -kba=s or --keep-old-breakpoints-after=s have expanded functionality
-      for the container tokens { [ ( and } ] ).  See the updated man pages for
+      for the container tokens: { [ ( } ] ).  The updated man pages have
       details.
 
     - Two new flags have been added to provide finer vertical alignment control,
index c6af5d4067f474c20e3557b6fb85979eb773f90f..753cbc1ce42ceb801921543e8a6dcc167c244b1b 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -55,6 +55,7 @@ Makefile.PL
 MANIFEST                       This list of files
 pm2pl
 README.md
+t/.gitattributes
 t/atee.t
 t/filter_example.t
 t/snippets1.t
@@ -75,6 +76,7 @@ t/snippets22.t
 t/snippets23.t
 t/snippets24.t
 t/snippets25.t
+t/snippets26.t
 t/snippets3.t
 t/snippets4.t
 t/snippets5.t
@@ -86,5 +88,10 @@ t/test-eol.t
 t/test.t
 t/testsa.t
 t/testss.t
+t/testwide-passthrough.pl.src
+t/testwide-passthrough.t
+t/testwide-tidy.pl.src
+t/testwide-tidy.pl.srctdy
+t/testwide-tidy.t
 t/testwide.pl.src
 t/testwide.t
index 2f0af26c6ae0020987814790ebf26f2415649e33..b9914c5480772931498700e2d0ba180f43afd380 100755 (executable)
@@ -5086,7 +5086,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20211029.05
+This man page documents perltidy version 20211029.06
 
 =head1 BUG REPORTS
 
index 22af8aeb07517c058183673f25528db6f30925e7..642cfdb5b1c471417f083d2b23a8802aee88019b 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20211029.05';
+    $VERSION = '20211029.06';
 }
 
 sub DESTROY {
index 28128c972a4428f2ff8fd423a224309551de3b6c..081d3c955b9820cbec3856e564625599321567b7 100644 (file)
@@ -445,7 +445,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.05
+This man page documents Perl::Tidy version 20211029.06
 
 =head1 LICENSE
 
index 2e0bfe80749fd360607e228f7324f04d503b387e..bd62bea76297bc848ae176379afc3eeebff856ae 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub new {
 
index 95eff269625bf224da864d6668713e511c6093f4..5edea33efbc142051e4e4503694783287490a5a9 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 4ad6a10e7d0a4e58a176185d43848e145fd9817f..de3c0836dae705bf5ae8b64775e5ff3cdb32da4c 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index d036935ff430417d6925a259652fc860559a3b67..7722db700bb7f47d047c2f03440ecd247407cc42 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 use constant DEVEL_MODE => 0;
 
index 017f61d51344034955a8add781cd76e9e790123d..72fafad51962cfb7b0a43b2c78702225d3967616 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.05';
+our $VERSION = '20211029.06';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index ca22b58a8dd49127d0a7599f220474d0c7d17682..0dd579f0c8cd367672b090cc9e977066ea07d783 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 use File::Basename;
 
index 9793c5d2da950f7b73ab7425534751c3f56a8156..e1e31de52f54c31b10d03e910f6b7b078ca0314a 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index d139ea1a986efa80d5601d93def99e5bdbc3728c..059d5cdf1a15969fbb3ff83138347fcabb78db69 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index 310ce4b03bd0700325234a40a6fe3805f86a09c6..339135b4e5c4ce84de3f3334faedb5415aa38273 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 BEGIN {
 
index b6080288a2640762702505b995c414a0e5cbe348..7fcf6d6809cf09582793c5dde70d96018fb43a96 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index 4172a307203d81b2c56fac086829f3b80d5ea35f..dbd5da197e50b32236c47f14b784d3b31e08beb6 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index c663fc0f47fd04488b591b6c9a81e49fd6e09599..0a5736d61461520db9fda7cad116feadce63dc53 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index e459b4ed2701227714685e7b935498e89c936994..6dad1e66b7bd1c660bb51f7110045befcf5d8710 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 sub AUTOLOAD {
 
index 1f167aaf9e20cd1fa61adeef38cb43c19d82cf23..1c624f8c572e47f3625cadb0aa3ff9fe613c52b6 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 # this can be turned on for extra checking during development
 use constant DEVEL_MODE => 0;
index 17e429bf3a6983a9bc700b378f8be2feef6fccc3..f4cad45fe45241305d6ca143e2475b3e5a358f26 100644 (file)
@@ -2,7 +2,7 @@ package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 0a548eff13ca55ff196d9ab043880b05a1c96f76..e425685e02d6e1b964ad8e3b53876be834f908bd 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 BEGIN {
 
index d90e7221d6e598c4fcd289cbc061996288dae177..9913b5086884e9c7ab8e95d781adcbe7070bba4a 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20211029.05';
+our $VERSION = '20211029.06';
 
 BEGIN {