]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20240511.09 20240511.09
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 5 Aug 2024 03:31:39 +0000 (20:31 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 5 Aug 2024 03:31:39 +0000 (20:31 -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 c413bacc00d5bf5aa6ebf5731f2ac76bc915e533..8098ec859360805586e2efa852d874c8551f2860 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2024 05 11.08
+## 2024 05 11.09
 
     - Add --timeout-in-seconds=n, or -to=n.  When the standard input supplies
       the input stream, and the input has not been received within n seconds,
index 10f0c79902f91791cd9669427a32f380c1d6fa9f..15cb9d483391a08e566d02e0b11b54d75f633f1c 100755 (executable)
@@ -6924,7 +6924,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240511.08
+This man page documents perltidy version 20240511.09
 
 =head1 BUG REPORTS
 
index 22a70511199fc10e4cb4d92df076d4b785290dc9..adcda645480cc3847a44d15b0a0be2feae0618f4 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.08';
+    $VERSION = '20240511.09';
 } ## end BEGIN
 
 sub DESTROY {
index d56b357f27a8320258aa4b5310f7a8cb1cec0e28..d246d54a1d6742a4df33239c1acdd164d00e64a9 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.08
+This man page documents Perl::Tidy version 20240511.09
 
 =head1 LICENSE
 
index ad58c8cdcb275170875364607829eadf03069e6b..d1121dcc2cb07dcb4f26ebab140c22766cd6ee14 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 357cedc77bdf6ec6461e0a2899b13bc47d576856..149ca1a2c529f53be7b08a5ca19a1f15e331968e 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use constant EMPTY_STRING => q{};
 
index 51646fc030b5fc365e1fac1bbf6b0399214ae5b2..b0febc347996f9d0b909908f0c1c04ed71fcf65a 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 268ce4d9920a96405fe077afbfe2bc8ebdb0f64f..9c1650cce6bb1033fa4bc5f8924e357d1b6e1694 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.08';
+our $VERSION = '20240511.09';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index a06dcd0867a32ba4007c24a5181ef8d68f94ede2..16d05be2a3c8a90b0ff5d64bffd5471d3cfdf607 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use Carp;
 use English qw( -no_match_vars );
index 23d96914350f0aafb32e883a14d338d43282883c..3dc4eef3e54b7b57ebed23d8acef99cc0a11a50f 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 70dcc8961b9d487a4d8d5a12c655cdd13d9422da..c7f385496c0451c3f7ce291c1e1d4c3bb29fc91d 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use constant DEVEL_MODE => 0;
 
index 3d07471dc71c0b05ef4b7877dbf92d65b37def35..49bf558897a3bde443fe5110688aeabf0ee7173e 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 BEGIN {
 
index 3376435d74c4f86de9727238c1efbd211235f65b..21da632d00bcc5506513857bdd90d66cf73b84a3 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 use Carp;
 use English qw( -no_match_vars );
 
index e633b06fe34ef6a2887b7df94824ef46a05d4175..caaf4f325e0ee0480298c85b5d01481e3fd322dd 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 use Carp;
 
index 97e7e14634f9009b609d597566e8a83c97ac7c7b..d1c08c7748699f3065d8f27f53eaac46bdb1ffb2 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';
 use Perl::Tidy::VerticalAligner::Alignment;
index a22f43e6da61fdef5e535600c8ac49099b96dca6..fc4015683b74f955af05a7a65f260b79c8ecbdd3 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 
 sub new {
     my ( $class, $rarg ) = @_;
index ca2033458e524e8e28ebabfa1d2d6632df9306a5..a782e14ae72ff2e0c2a995587bedb50a104f2b40 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.08';
+our $VERSION = '20240511.09';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {