]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20220613.06 20220613.06
authorSteve Hancock <perltidy@users.sourceforge.net>
Thu, 13 Oct 2022 13:11:58 +0000 (06:11 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Thu, 13 Oct 2022 13:11:58 +0000 (06:11 -0700)
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 5105d1ee5fb293002396d7ddfc532c0dafb2dad9..a02d6401864851e647b0e5316e472a0872b65975 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 06 13.05
+## 2022 06 13.06
 
     - Add option --weld-fat-comma (-wfc) for issue git #108. When -wfc
       is set, along with -wn, perltidy is allowed to weld an opening paren
index d59b0532f8ce88a2aeadeb93a1729c9af2bc287f..8921af76cba7c3cfed6c9cc0f2f765b777400bee 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -78,6 +78,7 @@ t/snippets23.t
 t/snippets24.t
 t/snippets25.t
 t/snippets26.t
+t/snippets27.t
 t/snippets3.t
 t/snippets4.t
 t/snippets5.t
index 7040e10f5dde6cc78e3a493554de83d6ccf3e338..da420e9559f75a32c2e1bbaaa5322a3f213f813d 100755 (executable)
@@ -5395,7 +5395,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220613.05
+This man page documents perltidy version 20220613.06
 
 =head1 BUG REPORTS
 
index 37cb3bd6a70b56a0a849be3b090cd1d2ede1e726..b2a44f0d6ef68a7a588f48e94776bd2b9960d1e4 100644 (file)
@@ -113,7 +113,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20220613.05';
+    $VERSION = '20220613.06';
 }
 
 sub DESTROY {
index e22425ac4e6ef63d994d73e3d204ae201ace4ee9..c418fa0b95f7facd6497bde8ad676eeb6f90a3e9 100644 (file)
@@ -475,7 +475,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20220613.05
+This man page documents Perl::Tidy version 20220613.06
 
 =head1 LICENSE
 
index 6da618acdcaa70280bb847c827901a4af5608ec6..f821bae73d8a1f5721efa6785ed42f9a859f5f6a 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index be43988186656a99611835f091ec94b0f639c4c6..79cb3de9220df4dad2b0d78ab826c665dea3cc9a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 254e7801178e4abc1ca52ce5830b3077a966e48a..4a4eaa139cac2bd18618bbea385b8c002bd6c944 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use constant EMPTY_STRING => q{};
 
index e5778166c95638f9605a11ba9c7d359d0eaf7479..bc9def4e5366de55e214eedda84fabe6f1cc6e26 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index bb4f4f676ee3a8b4c8151486d9ba67bafb4b15e8..48f019b5aab8298321522f268a19aae9bdfbb683 100644 (file)
@@ -53,7 +53,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max );          # min, max are in Perl 5.8
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index dd1a79a19ec26802a10905699054347f5e7ddac3..de0ad978c69a62ec1c0a4dfa92d7b8f500feead0 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 476a04dac26fe315f55986ee5408879d3ff22709..7cd551a2f9e2032012740c8f3fe717db12cc8f08 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use constant EMPTY_STRING => q{};
 
index 695bdd97c88d38476eb71bc6499dceb903c5e5c8..212a815029189f9e57631d44273039f53c0f3600 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 sub AUTOLOAD {
 
index 151e36e2adc8ed389c1d45ea51026ad922d5ae4a..9728f8b61a54fad53a0f2be58db7d25695806378 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 BEGIN {
 
index 96fbfb155ab78f46a34c8a62872c4d08cb453bb6..1fc45edb648a22b1ca2327cb1ea6fa61aac381bd 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 sub AUTOLOAD {
 
index 36521ea9199e56f8e3c3b3a5d474536d0810cea9..683761bb42f85c74172455d9c4ef08416a68a4dc 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 sub AUTOLOAD {
 
index 90551fa4e645b387b9d98ecfd013fca154750fba..41cf5b2e99bd73f82433fa6abbaa02ff297c9a26 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use constant DEVEL_MODE => 0;
 
index 77d2aac8294b9c14c08ef1a8c38710b57fd824f8..aa7ae9a5d6471d03754a16dcd251405b19b89000 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index e869eb5c3279d2d900bf20e71fb945c00061b337..cd93f0ce8edd2e52c1ff5d26d37af55cc1585ea2 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 0859fdc03ed4fbad0919aa181e763c73cce0d15a..4910ddd1a6bbe437709ad3583748f9942bd51010 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index a3b312bfb7e9008249c1aadf55a57620eeccb1a9..05d632eee8b48ed3ef7c880be0b04a15b7aaf938 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 378a64368351c4651f36f9aca8f0bb46a1cbffe1..ec705feecc36cffda5f088378accc80ae1105c7f 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20220613.05';
+our $VERSION = '20220613.06';
 
 sub AUTOLOAD {