]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to .04 20230701.04
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 5 Sep 2023 14:54:25 +0000 (07:54 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 5 Sep 2023 14:54:25 +0000 (07:54 -0700)
20 files changed:
CHANGES.md
bin/perltidy
docs/ChangeLog.html
docs/Tidy.html
docs/perltidy.html
lib/Perl/Tidy.pm
lib/Perl/Tidy.pod
lib/Perl/Tidy/Debugger.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 1e66f82dfbcd1e2c0524e6446056bf0e8400ac6d..4f5160317217805fb3a0ae2474fe9bf7355206b8 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 07 01.03
+## 2023 07 01.04
 
     - Add parameters -wme, or --warn-missing-else, and -ame,
       or --add-missing else.  The parameter -wme tells perltidy to issue
index fd188ed0ffde20dd5b49360a5188bb3103596fcd..606e7d82e46c0e61ac3947875fc8a17d983792cc 100755 (executable)
@@ -3861,18 +3861,17 @@ commas are removed.
 
 =head2 Missing Else Blocks
 
-One defensive programming technique is to require every B<if-elsif-> chain be
-terminated with an B<else> block, even if it is not strictly required,
+One defensive programming technique is to require that every B<if-elsif->
+chain be terminated with an B<else> block, even though it is not required,
 to insure that there are no holes in the logic.
 
-For example, consider the following snippet from an actual program:
+For example, consider the following snippet
 
     if    ( $level == 3 ) { $val = $global{'section'} }
     elsif ( $level == 2 ) { $val = $global{'chapter'} }
 
 What if the variable B<$level> is neither 2 nor 3?  Maybe the original
-programmer knew that this was okay, but a new programmer might not be sure
-sure.
+programmer knew that this was okay, but a new programmer might be unsure.
 
 Perltidy has always written this information in its B<LOG> file (search for
 B<No else block>).  But a problem is that you have to turn on the log file and
@@ -3884,11 +3883,13 @@ or both.
 
 =item B<-wme>,  B<--warn-missing-else>
 
-This flag tells perltidy to issue a warning if a program is missing a terminal B<else> block.
+This flag tells perltidy to issue a warning if a program is missing a terminal B<else> block.  The default is not to issue such warnings.
 
 =item B<-ame>,  B<--add-missing-else>
 
-This flag tells perltidy to output an empty else block wherever a program is missing a terminal B<else> block.
+This flag tells perltidy to output an empty else block wherever a program is
+missing a terminal B<else> block.  To get a warning when this is done you can
+also set B<-wme>.  The default is not to add missing else blocks.
 
 =item B<-amec=s>,  B<--add-missing-else-comment=s>
 
@@ -3900,23 +3901,24 @@ This string is an optional side comment which will be placed within a new empty
 
 For example, on the above example we get
 
-    # perltidy -ame
+    # perltidy -ame -wme
     if    ( $level == 3 ) { $val = $global{'section'} }
     elsif ( $level == 2 ) { $val = $global{'chapter'} }
     else {
         ##FIXME - added with perltidy -ame
     }
 
-The comment should be changed appropriately after the code is inspected. For
-example, we might decide that it fine as is:
+Any B<##FIXME> comments should be changed appropriately after the code is
+inspected. For example, we might decide that it fine as is, and just leave
+a note for the next programmer:
 
     if    ( $level == 3 ) { $val = $global{'section'} }
     elsif ( $level == 2 ) { $val = $global{'chapter'} }
     else {
-        # ok - ignore other level values are safely ignored
+        # ok - other $level values can be safely ignored
     }
 
-Or maybe it is a potential problem:
+Or maybe it should never happen:
 
     if    ( $level == 3 ) { $val = $global{'section'} }
     elsif ( $level == 2 ) { $val = $global{'chapter'} }
@@ -3927,7 +3929,6 @@ Or maybe it is a potential problem:
 Note that this operation cannot be undone, so be careful to inspect the new
 code carefully.
 
-
 =head2 Retaining or Ignoring Existing Line Breaks
 
 Several additional parameters are available for controlling the extent
@@ -5868,7 +5869,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230701.03
+This man page documents perltidy version 20230701.04
 
 =head1 BUG REPORTS
 
index 8bc3f428d6a5a56a0e1df2dfd65ab2a32dfd390f..2a2ecc57402ad2e6e51b396fc7cdbc08fb975143 100644 (file)
@@ -1,5 +1,65 @@
 <h1>Perltidy Change Log</h1>
 
+<h2>2023 07 01.04</h2>
+
+<pre><code>- Add parameters -wme, or --warn-missing-else, and -ame,
+  or --add-missing else.  The parameter -wme tells perltidy to issue
+  a warning to the error output if an if-elsif-elsif-... chain does
+  not end in an else block.  The parameter -ame tells perltidy to
+  insert an else block at the end of such a chain if there is none.
+
+  For example, given the following snippet:
+
+    if    ( $level == 3 ) { $val = $global{'section'} }
+    elsif ( $level == 2 ) { $val = $global{'chapter'} }
+
+  # perltidy -ame
+    if    ( $level == 3 ) { $val = $global{'section'} }
+    elsif ( $level == 2 ) { $val = $global{'chapter'} }
+    else {
+        ##FIXME - added with perltidy -ame
+    }
+
+  The resulting code should be carefully reviewed, and the comment should
+  be updated as appropriate.  The comment can be changed with parameter
+  -amec=s, where 's' is the comment in the else block.  The man pages
+  have more details.
+
+- The syntax of the parameter --use-feature=class, or -uf=class, which
+  new in the previous release, has been changed slightly for clarity.
+  The default behavior, which occurs if this flag is not entered, is
+  to automatically try to handle both old and new uses of the keywords
+  'class', 'method', 'field', and 'ADJUST'.
+  To force these keywords to only follow the -use feature 'class' syntax,
+  enter --use-feature=class.
+  To force perltidy to ignore the -use feature 'class' syntax, enter
+  --use-feature=noclass.
+
+- 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
+  with 1. The man pages have details.
+
+- Some fairly rare instances of incorrect spacing have been fixed.  The
+  problem was that the tokenizer being overly conservative in marking
+  terms as possible filehandles. This cause the space after the possible
+  filehandle to be frozen to its input value in order not to introduce
+  an error in case Perl had to guess.  The problem was fixed by having the
+  tokenizer look ahead for operators which can eliminate the uncertainty.
+  To illustrate, in the following line the term ``$d`` was previouly
+  marked as a possible file handle, so no space was added after it.
+
+      print $d== 1 ? " [ON]\n" : $d ? " [$d]\n" : "\n";
+
+  In the current version, the next token is seen to be an equality, so
+  ``$d`` is marked as an ordinary identifier and normal spacing rules
+  can apply:
+
+      print $d == 1 ? " [ON]\n" : $d ? " [$d]\n" : "\n";
+
+- This version runs 7 to 10 percent faster than the previous release on
+  large files, depending on options and file type.
+</code></pre>
+
 <h2>2023 07 01</h2>
 
 <pre><code>- Issue git #121. Added parameters -xbt, or --extended-block-tightness,
index b13fbac0ae7d6d9d42e7e2c14f5de0e35b382a99..3a2e9e9ab0343f42ca6a85b01235fccb634deaa4 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents Perl::Tidy version 20230701</p>
+<p>This man page documents Perl::Tidy version 20230701.04</p>
 
 <h1 id="LICENSE">LICENSE</h1>
 
index 1f760629ec9cd7c3aaa6336209750360f933a108..1664dcec6985fa3bbfd34a8b974cf783e7c0adf9 100644 (file)
       <li><a href="#Whitespace-Control">Whitespace Control</a></li>
       <li><a href="#Comment-Controls">Comment Controls</a></li>
       <li><a href="#Skipping-Selected-Sections-of-Code">Skipping Selected Sections of Code</a></li>
+      <li><a href="#Formatting-a-Limited-Range-of-Lines">Formatting a Limited Range of Lines</a></li>
       <li><a href="#Line-Break-Control">Line Break Control</a></li>
       <li><a href="#Controlling-Breaks-at-Braces-Parens-and-Square-Brackets">Controlling Breaks at Braces, Parens, and Square Brackets</a></li>
       <li><a href="#Welding">Welding</a></li>
       <li><a href="#Breaking-Before-or-After-Operators">Breaking Before or After Operators</a></li>
       <li><a href="#Controlling-List-Formatting">Controlling List Formatting</a></li>
       <li><a href="#Adding-and-Deleting-Commas">Adding and Deleting Commas</a></li>
+      <li><a href="#Missing-Else-Blocks">Missing Else Blocks</a></li>
       <li><a href="#Retaining-or-Ignoring-Existing-Line-Breaks">Retaining or Ignoring Existing Line Breaks</a></li>
       <li><a href="#Blank-Line-Control">Blank Line Control</a></li>
       <li><a href="#Styles">Styles</a></li>
           &amp;&amp; ( $a-&gt;{&#39;title&#39;} eq $b-&gt;{&#39;title&#39;} )
           &amp;&amp; ( $a-&gt;{&#39;href&#39;} eq $b-&gt;{&#39;href&#39;} ) );</code></pre>
 
-<p>Note that this is considered to be a different operation from &quot;vertical alignment&quot; because space at just one line is being adjusted, whereas in &quot;vertical alignment&quot; the spaces at all lines are being adjusted. So it sort of a local version of vertical alignment.</p>
+<p>Note that this is considered to be a different operation from &quot;vertical alignment&quot; because space at just one line is being adjusted, whereas in &quot;vertical alignment&quot; the spaces at all lines are being adjusted. So it is sort of a local version of vertical alignment.</p>
 
 <p>Here is an example involving a ternary operator:</p>
 
 </dd>
 </dl>
 
+<h2 id="Formatting-a-Limited-Range-of-Lines">Formatting a Limited Range of Lines</h2>
+
+<p>A command <b>--line-range-tidy=n1:n2</b> is available to process just a selected range of lines of an input stream with perltidy. This command is mainly of interest for programming interactive code editors. When it is used, the entire input stream is read but just the selected range of lines of the input file are processed by the perltidy tokenizer and formatter, and then the stream is reassembled for output. The selected lines need to contain a complete statement or balanced container. Otherwise, a syntax error will occur and the code will not be tidied. There are a couple of limitations on the use of this command: (1) it may not be applied to multiple files, and (2) it only applies to code tidying and not, for example, html formatting.</p>
+
+<dl>
+
+<dt id="lrt-n1:n2---line-range-tidy-n1:n2"><b>-lrt=n1:n2</b>, <b>--line-range-tidy=n1:n2</b></dt>
+<dd>
+
+<p>The range of lines is specified by integers <b>n1</b> and <b>n2</b>, where <b>n1</b> is the first line number to be formatted (start counting with 1) and <b>n2</b> is the last line number to be formatted. If <b>n2</b> is not given, or exceeds the actual number of lines, then formatting continues to the end of the file.</p>
+
+<p>Examples:</p>
+
+<pre><code>  -line-range-tidy=43:109      # tidy lines 43 through 109
+  -line-range-tidy=&#39; 43 : 109&#39; # tidy lines 43 through 109 (spaces ok in quotes)
+  -line-range-tidy=1:          # tidy all lines
+  -line-range-tidy=0:90        # ERROR (n1 must be &gt;= 1)</code></pre>
+
+</dd>
+</dl>
+
 <h2 id="Line-Break-Control">Line Break Control</h2>
 
 <p>The parameters in this and the next sections control breaks after non-blank lines of code. Blank lines are controlled separately by parameters in the section <a href="#Blank-Line-Control">&quot;Blank Line Control&quot;</a>.</p>
 
 <p>One limitation is that any line length limit still applies and can cause long welded sections to be broken into multiple lines.</p>
 
-<p>Another limitation is that an opening symbol which delimits quoted text cannot be included in a welded pair. This is because quote delimiters are treated specially in perltidy.</p>
-
-<p>Finally, the stacking of containers defined by this flag have priority over any other container stacking flags. This is because any welding is done first.</p>
+<p>Also, the stacking of containers defined by this flag have priority over any other container stacking flags. This is because any welding is done first.</p>
 
 </dd>
 <dt id="wfc---weld-fat-comma"><b>-wfc</b>, <b>--weld-fat-comma </b></dt>
 </dd>
 </dl>
 
+<h2 id="Missing-Else-Blocks">Missing Else Blocks</h2>
+
+<p>One defensive programming technique is to require that every <b>if-elsif-</b> chain be terminated with an <b>else</b> block, even though it is not required, to insure that there are no holes in the logic.</p>
+
+<p>For example, consider the following snippet:</p>
+
+<pre><code>    if    ( $level == 3 ) { $val = $global{&#39;section&#39;} }
+    elsif ( $level == 2 ) { $val = $global{&#39;chapter&#39;} }</code></pre>
+
+<p>What if the variable <b>$level</b> is neither 2 nor 3? Maybe the original programmer knew that this was okay, but a new programmer might be unsure.</p>
+
+<p>Perltidy has always written this information in its <b>LOG</b> file (search for <b>No else block</b>). But a problem is that you have to turn on the log file and look for it. The parameters in this section can either issue a warning if an <b>else</b> is missing, or even insert an empty <b>else</b> block where one is missing, or both.</p>
+
+<dl>
+
+<dt id="wme---warn-missing-else"><b>-wme</b>, <b>--warn-missing-else</b></dt>
+<dd>
+
+<p>This flag tells perltidy to issue a warning if a program is missing a terminal <b>else</b> block. The default is not to issue such warnings.</p>
+
+</dd>
+<dt id="ame---add-missing-else"><b>-ame</b>, <b>--add-missing-else</b></dt>
+<dd>
+
+<p>This flag tells perltidy to output an empty else block wherever a program is missing a terminal <b>else</b> block. To get a warning when this is done you can also set <b>-wme</b>. The default is not to add missing else blocks.</p>
+
+</dd>
+<dt id="amec-s---add-missing-else-comment-s"><b>-amec=s</b>, <b>--add-missing-else-comment=s</b></dt>
+<dd>
+
+<p>This string is an optional side comment which will be placed within a new empty else block. The default is:</p>
+
+<pre><code>    -amec=&#39;##FIXME - added with perltidy -ame&#39;</code></pre>
+
+</dd>
+</dl>
+
+<p>For example, on the above example we get</p>
+
+<pre><code>    # perltidy -ame -wme
+    if    ( $level == 3 ) { $val = $global{&#39;section&#39;} }
+    elsif ( $level == 2 ) { $val = $global{&#39;chapter&#39;} }
+    else {
+        ##FIXME - added with perltidy -ame
+    }</code></pre>
+
+<p>Any <b>##FIXME</b> comments should be changed appropriately after the code is inspected. For example, we might decide that it fine as is, and just leave a note for the next programmer:</p>
+
+<pre><code>    if    ( $level == 3 ) { $val = $global{&#39;section&#39;} }
+    elsif ( $level == 2 ) { $val = $global{&#39;chapter&#39;} }
+    else {
+        # ok - other $level values can be safely ignored
+    }</code></pre>
+
+<p>Or maybe it should never happen:</p>
+
+<pre><code>    if    ( $level == 3 ) { $val = $global{&#39;section&#39;} }
+    elsif ( $level == 2 ) { $val = $global{&#39;chapter&#39;} }
+    else {
+        die(&quot;unexpected value of level=$level\n);
+    }</code></pre>
+
+<p>Note that this operation cannot be undone, so be careful to inspect the new code carefully.</p>
+
 <h2 id="Retaining-or-Ignoring-Existing-Line-Breaks">Retaining or Ignoring Existing Line Breaks</h2>
 
 <p>Several additional parameters are available for controlling the extent to which line breaks in the input script influence the output script. In most cases, the default parameter values are set so that, if a choice is possible, the output style follows the input style. For example, if a short logical container is broken in the input script, then the default behavior is for it to remain broken in the output script.</p>
 <dt id="uf-s---use-feature-s"><b>-uf=s</b>, <b>--use-feature=s</b></dt>
 <dd>
 
-<p>This flag tells perltidy to allow the syntax associated a pragma in string <b>s</b>. Currently only the recognized values for the string are <b>s=&#39;class&#39;</b> or string <b>s=&#39; &#39;</b>. The default is <b>--use-feature=&#39;class&#39;</b>. This enables perltidy to recognized the special words <b>class</b>, <b>method</b>, <b>field</b>, and <b>ADJUST</b>. If this causes a conflict with other uses of these words, the default can be turned off with <b>--use-feature=&#39; &#39;</b>.</p>
+<p>This flag tells perltidy to allow or disallow the syntax associated a pragma in string <b>s</b>. The current possible settings are:</p>
+
+<ul>
+
+<li><p><b>--use-feature=&#39;class&#39;</b>. This tells perltidy to recognized the special words <b>class</b>, <b>method</b>, <b>field</b>, and <b>ADJUST</b> as defined for this feature.</p>
+
+</li>
+<li><p><b>--use-feature=&#39;noclass&#39;</b>. This tells perltidy <b>not</b> to treat words <b>class</b>, <b>method</b>, <b>field</b>, <b>ADJUST</b> specially.</p>
+
+</li>
+<li><p><b>Neither of these</b> (<b>--use-feature</b> not defined). This is the DEFAULT and recommended setting. In this case perltidy will try to automatically handle both the newer --use-feature &#39;class&#39; syntax as well as some conflicting uses of some of these special words by exisiting modules.</p>
+
+</li>
+</ul>
+
+<p>Note that this parameter is independent of any <b>use feature</b> control lines within a script. Perltidy does not look for or read such control lines. This is because perltidy must be able to work on small chunks of code sent from an editor, so it cannot assume that such lines will be within the lines being formatted.</p>
 
 </dd>
 </dl>
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents perltidy version 20230701</p>
+<p>This man page documents perltidy version 20230701.04</p>
 
 <h1 id="BUG-REPORTS">BUG REPORTS</h1>
 
index 1d504d369fe7e5a21a06b4a9bfdc9314b9ef2ec8..f5a1fc673e0263d6cf87375957dcf6bf1f68935d 100644 (file)
@@ -111,7 +111,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230701.03';
+    $VERSION = '20230701.04';
 } ## end BEGIN
 
 sub DESTROY {
index baea366c572b6bdd179881b76d1cced712515dc0..65ad5014e6f83d28096ab8d2dc73885621ec3705 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.03
+This man page documents Perl::Tidy version 20230701.04
 
 =head1 LICENSE
 
index 3dd9005bb435cd122b7e889f2f535aa0c88d1be4..8e1a3fe60a6c28c6811fcdff909b007b62803b4b 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index b94b05010a898ea4a3bd6c4d5dd2c66474390936..6a16e97833625ae0bb29ea44145249b9519b0cd9 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use constant EMPTY_STRING => q{};
 
index 17d3cc53e410c667407e4d77c07434f64c61236b..0250311e0ff789376e583796525ddc80ef5fde04 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index dbb07c058aec271641408aa6e31ef0161f0dc0f4..93dde3b01ede46bae6237ab868a9dc2d93848141 100644 (file)
@@ -53,7 +53,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max first );    # min, max first are in Perl 5.8
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 0f34fb695ae6a618003a667512d84bfc4ab44962..157b670e735ed53828afa505fdb93547abc7563e 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 07ede06f3847a2499e612c192fcdc656fefdcead..1c2a4147cfccfcb63864cb024a9cf7742c874b22 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 1f5a35facc10bf018ac9a09f9825503225af873c..2c4628862a90826539529f908ef3661d9d7e3c1a 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use constant DEVEL_MODE => 0;
 
index 85f1a4f2d94410c327001db21057ac01a72b63a4..d444b5e266d4cc205618643f0732f3ae0d23c942 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 BEGIN {
 
index a303ba183be606925b60fc613b2894c1a67b4aab..aa23eaa8b3dd1be46116869d8ca4e1de493c69f9 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index c2b495e888d2dcdb606be31fc0b3956903873fb9..012adca2dc1f86f325190a8f1a08e6d01778009c 100644 (file)
@@ -22,7 +22,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 use Carp;
 
index 9fcd525b347aa91fd5f438ed8905b75c8bd11647..3d676a0ff5ea6c9c69e74629c600854d09978f3f 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 3f396f410bb4c9a0dc2cea6c5f52a3fa2091451e..7b8798a70471b75906bdb7d77e542426ad6678a5 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 4ad8aec657d08d90f28b83da28c8e6c6625e6f4f..97bca6b31f64d36e858c641ee4496ebda99c3371 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230701.03';
+our $VERSION = '20230701.04';
 
 sub AUTOLOAD {