]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240511.01 20240511.01
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 13 May 2024 23:12:55 +0000 (16:12 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 13 May 2024 23:12:55 +0000 (16:12 -0700)
17 files changed:
CHANGES.md
bin/perltidy
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 ad1dc685e0972dce0e8d4849ad71cb157c9cd03f..56fb9b3813e8493e1f7ecd3ae9dfecc802fa7f69 100644 (file)
@@ -1,5 +1,12 @@
 # Perltidy Change Log
 
+## 2024 05 11.01
+
+    - Fix issue git #142, test failure installing on perl versions before
+      version 5.10.  The error caused the new parameter
+      -interbracket-arrow-style=s not to work. Except for this limitation,
+      Version 20240511 will work on older perl versions.
+
 ## 2024 05 11
 
     - The option --valign-signed-numbers, or -vsn is now the default. It
index 4bc826943b3ac5e1c81a3cd6b73409a3dd5681fb..77d21cf2bf5048ce799a43c4f8f546321385c539 100755 (executable)
@@ -6658,7 +6658,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240511
+This man page documents perltidy version 20240511.01
 
 =head1 BUG REPORTS
 
index db09e992915e42daf4fb57e4ba5f9cb0ab4d028b..6d534275ad8b98d37d8bdb26674fe485f9600e78 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 = '20240511';
+    $VERSION = '20240511.01';
 } ## end BEGIN
 
 sub DESTROY {
index 9ed5e7b81c0ea8b37862514fdc5d1ff7d0ebce2d..6ec3f6008269553e0538a4f3c7cb16e8023c5d81 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 20240511
+This man page documents Perl::Tidy version 20240511.01
 
 =head1 LICENSE
 
index 26d821e1ea34448f5c1fc17f5b064a7aef8931c9..29ee5225a006bdddc3c64b34f9796560917b2873 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 7dcbb247714bd9a6f4dccb86dcc57bb362f6dd2f..fd62ef76e0dfa0e5630381ad227c8fac27a7795d 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use constant EMPTY_STRING => q{};
 
index fb76925c7d0948bb64013971713415d1c3a03c26..c4b556a123279a56a8368d472e64b9c0a6c50751 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 770a477eba518a67143fd6d1fe7de1d972dca518..fe9235c2e44338ddd6f821f9c36675cc4c00fcf4 100644 (file)
@@ -76,7 +76,7 @@ use constant BACKSLASH    => 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 = '20240511';
+our $VERSION = '20240511.01';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 79171dd64746bc6ac5b2c4d104be8f6e19d69db9..80dbf097111bdeca5f105da9168712cd0fb0829d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use Carp;
 use English qw( -no_match_vars );
index c5079fe6a3b768775dad4a396d777f6fcf1f41db..6035f28ba21db86ec3df61d3955892ebdcdc1d00 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index d9d8edb5883e77859ed3335b405ea4bbc0924b21..9a1a54fc9d50af98108d2690a61a1f4390cb85f7 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use constant DEVEL_MODE => 0;
 
index 2032fbda00156c4846d8939d0b9add06ca1d8b25..3cb8658b2f80aaa8fe6d68b9bfb094a181e2108e 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 BEGIN {
 
index 39b43b445a9726c4bf49cc2db3a048693c7232a9..ad237345cf7aaf7a71b0b5a7a177a835b30a855d 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 use Carp;
 use English qw( -no_match_vars );
 
index 441159c3740435dd80f22dade4b241ab7df605b4..e37ad571dfffdb2688c2107a36d825863b8e4bd7 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 use Carp;
 
index 2c229721d4def4122523a5196c306617ce18043c..7ce86926021e89f233ab4733fc52a97f68996a1d 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';
 use Perl::Tidy::VerticalAligner::Alignment;
index 41e76b4505991c048949ddf04707aad73cc0bcb5..be0db5c3f0be5ac68fd1826b7e3d394d95473864 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 5c5f133f2a6451cad38bb9b21e7708745ff99b2f..3746f10b69c44e14f2054832f8a5bb9bf60bad1c 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240511';
+our $VERSION = '20240511.01';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {