bump version to 20240202.07 20240202.07
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 18 Apr 2024 16:54:19 +0000 (09:54 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 18 Apr 2024 16:54:19 +0000 (09: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 b97d0e96176c5d757ea9224a2c6d8ccfb215687f..ee947a9ae4a99f68b3dcb9dc80c9ab183a69adf0 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2024 02 02.06
+## 2024 02 02.07
 
     - Fix issue git #138 involving -xlp (--extended-line-up-parentheses).
       When multiple-line quotes and regexes have long secondary lines, these
index 2e5c0f0cf7f8382db714a6fa1d48c21e8b061c07..ed6b24cd53eed2f139740b2c87b09db2519db5a8 100755 (executable)
@@ -6629,7 +6629,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240202.06
+This man page documents perltidy version 20240202.07
 
 =head1 BUG REPORTS
 
index 4fa3750bb47163251ad84d47199e09a4c44316e4..6cb3c90c1219aa6b6a4c4a930a30784800591b8b 100644 (file)
@@ -1,8 +1,15 @@
 <h1>Perltidy Change Log</h1>
 
-<h2>2024 02 02.06</h2>
+<h2>2024 02 02.07</h2>
 
-<pre><code>- Add option --minimize-continuation-indentation, -mci (see git #137).
+<pre><code>- Fix issue git #138 involving -xlp (--extended-line-up-parentheses).
+  When multiple-line quotes and regexes have long secondary lines, these
+  line lengths could influencing some spacing and indentation, but they
+  should not have since perltidy has no control over their indentation.
+  This has been fixed. This will mainly influence code which uses -xlp
+  and has long multi-line quotes.
+
+- Add option --minimize-continuation-indentation, -mci (see git #137).
   This flag allows perltidy to remove continuation indentation in some
   special cases where it is not really unnecessary. For a simple example,
   the default formatting for the following snippet is:
index 8df05c10d8623a38f4d9c0fceef7cf0379838758..8dc428ff9e156f33136c70440199797027eb1dfb 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents Perl::Tidy version 20240202.06</p>
+<p>This man page documents Perl::Tidy version 20240202.07</p>
 
 <h1 id="LICENSE">LICENSE</h1>
 
index fe82ef47b9f96f8b61134fe2ab13136b137ea028..d8b3c85010a14345a686c3d5bf22faa036dc8adc 100644 (file)
 
 <h1 id="VERSION">VERSION</h1>
 
-<p>This man page documents perltidy version 20240202.06</p>
+<p>This man page documents perltidy version 20240202.07</p>
 
 <h1 id="BUG-REPORTS">BUG REPORTS</h1>
 
index 3542d5bfedfbfde00e57399b2bc7b78ac1190d08..94205fa3377b5341b69292712442dc825685481b 100644 (file)
@@ -131,7 +131,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20240202.06';
+    $VERSION = '20240202.07';
 } ## end BEGIN
 
 sub DESTROY {
index 62bbbf2f0c033a704c7befb43d74a7c805eb893c..1d61ffee89373b01be9f7ce6bb5e34bbafd01e75 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 20240202.06
+This man page documents Perl::Tidy version 20240202.07
 
 =head1 LICENSE
 
index 59bfa3f934c745998ed53902ed6d609933d1e8e9..20563044875b113675588c4b0e8455f9fa7caa7a 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 428bfedbcefda61d108afe7d5d8b1012370ad18f..24d30ca64ab333882da01ec66eaca5db86281456 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use constant EMPTY_STRING => q{};
 
index 75ceb537a6847e009c71ca8b3dcb34157a05308b..699fdc5cd74452c08e4e8b99fd24b32d3464cfdc 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 230c7f05285d7398d65e53a9ba9303dfbd32fa42..c5e756e79976635123b0e43e102bd043c681279c 100644 (file)
@@ -75,7 +75,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 = '20240202.06';
+our $VERSION = '20240202.07';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 2ce6eb799955a938d93da63c8f0b1123d139685c..1ba6d9d70f9375badfc77d723bafa5e51ef92e25 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use Carp;
 use English qw( -no_match_vars );
index 4e7d95ff072a55ff1d8359d9b8b6d81009e175aa..72ff361e5102e9dce8132a6e027fd5c56420d341 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 27f217d24e62b5fbc3e994feee4ab7cc72aa81d5..3dc3baee3fc2f1ed779537ee06869358902a7dba 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use constant DEVEL_MODE => 0;
 
index f66d86e74c210d4df60e650356b0eac343d074f5..ce379d40fdc743d1c3b8f7af08d580e15b7fa48d 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 BEGIN {
 
index c6f08c8ecead2b18b91be134522414439bc56a47..15a9b86d7ae3ad06c4bfff2f84b3441b784da437 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 use Carp;
 use English qw( -no_match_vars );
 
index d21702299154d257b407115a12b97174fbf8134d..35c93ed6a4bb6ff3c4964f99e9b8830fe05a340d 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 use Carp;
 
index d6353adc8bcda0e0bfc3d89321e912abe7d67978..b47278c85c278756d6290bdae930b7841d753d86 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';
 use Perl::Tidy::VerticalAligner::Alignment;
index bb766d3aee7d922ff247f4b65fc8abab7fc44a95..95fbe7e7642b7329bc03af30989c34953741ee8f 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 395a49f0b851c68c77f46fbc9227360e3cfb5cc9..26109b5166455a265c78972dfd4cdf23daa017d5 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240202.06';
+our $VERSION = '20240202.07';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {