]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240511.06 20240511.06
authorSteve Hancock <perltidy@users.sourceforge.net>
Mon, 15 Jul 2024 21:20:46 +0000 (14:20 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Mon, 15 Jul 2024 21:20:46 +0000 (14:20 -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 922c80f7b388eacdd35e759e583595c6c30d1081..62289053083e621e5e97f30bf3c7da487537362c 100644 (file)
@@ -1,6 +1,11 @@
 # Perltidy Change Log
 
-## 2024 05 11.05
+## 2024 05 11.06
+
+    - Add options --add-lone-trailing-commas, -altc and
+      --delete-lone-trailing-commas, -dltc, to add control over adding
+      and deleting the only comma in a list.  See discussion in git #143
+      and the updated manual.
 
     - Add options --dump-mismatched-returns (or -dmr) and
       --warn-mismatched-returns (or -wmr).  These options report function
index 2d7ac299ac1ac7393babbab95e161ad45007e872..488fed8d9d0452941dcd065734f24bf3a3b5c61e 100755 (executable)
@@ -6828,7 +6828,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240511.05
+This man page documents perltidy version 20240511.06
 
 =head1 BUG REPORTS
 
index 602e07d70bdc0293f319fceb19bb909acfbba632..45798f6d92a0dbffc9247e92aaa5c4102351bda4 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.05';
+    $VERSION = '20240511.06';
 } ## end BEGIN
 
 sub DESTROY {
index ca73eb986fe6e49d61ba900c3de317f53dc243f4..23ab1ea0d2544e1ccd5501e765b7b49726719864 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.05
+This man page documents Perl::Tidy version 20240511.06
 
 =head1 LICENSE
 
index 5dc59630738ddc43cd84343646798a2d61ec15fe..4a2eafb72945f57d558a638b3a335751695c4167 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index a541e0783a6f4f34109417b711a4d651639c0a8f..9bae56a29616d3fb6673eec8ad7aac5e5604b8ef 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use constant EMPTY_STRING => q{};
 
index ff96f9f7db22351466ba2c7d523cb7bcbd303ca4..ca4e3e5945a3d42faf21010baeb272b048c1ca47 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index b143c8f99347650ab423bb8b24e9ef8f96ec2d9c..0fe888297100f3ace67a2f5a626ce0e2751f712c 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.05';
+our $VERSION = '20240511.06';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 9fa76c436a76d6e4584804defc68c951c91193f2..f2378abadf6b72b090aaaac55f2f5f136318663a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use Carp;
 use English qw( -no_match_vars );
index 8b761915053d4f99baae97c6ea1368a085786407..1f4a1169a3c3f273c6f04d43a019fb4835afab00 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index b1d23c9159ae14dddf88f40d5d6ca288aca5a9b3..95b50eece30059ea544bf397bdc913093d92fa78 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use constant DEVEL_MODE => 0;
 
index c8ba0c9e1a66c91ab3b2c4fa79b3bbdcbeab0c0b..e331ee75407a7fbf09deedbbcce8596db4656ee5 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 BEGIN {
 
index 8fcbd6e75aeeb6cc6598123a67a587165dce16f5..19dffb732522fc6e53bdd0d2b6ef3b543c8f6c2c 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 use Carp;
 use English qw( -no_match_vars );
 
index 16a2b1c500dfeb56c59270c513d735116f4e5e1d..20de7f847cf157df4c4120268e0eda708235acb5 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 use Carp;
 
index 5ebc080b4ae3c2ab63c3a27aa35ee14d5f606c4c..43d164b5145f20bd532d3facdcc834a82d477ded 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';
 use Perl::Tidy::VerticalAligner::Alignment;
index b397502cf411dd8fae030bd16098996946a4ec7f..3455ba0d12656d19131295b3066244cb91aeb80e 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 4c05a4c160071f94344db6012bde34b1c8b5a131..29387835011c7c29873885612c18fa2ebe04b02a 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240511.05';
+our $VERSION = '20240511.06';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {