]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240903.02 20240903.02
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 14 Sep 2024 16:39:25 +0000 (09:39 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 14 Sep 2024 16:39:25 +0000 (09:39 -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 331fa474d7c86884dc77b85dc99f358e1536fc94..b24c1ccc6a1adf9651a2f2fe35f8818375f4070b 100644 (file)
@@ -1,6 +1,13 @@
 # Perltidy Change Log
 
-## 2024 09 03.01
+## 2024 09 03.02
+
+    - More edge cases for adding and deleting trailing commas are now handled
+    (git #156).
+
+    - A problem has been fixed in which the addition or deletion of trailing
+    commas with the -atc or -dtc flags did not occur due to early convergence
+    when the -conv flag was set (git #143).
 
     - Added parameter --qw-as-function, or -qwaf, discussed in git #164.
     When this parameter is set, a qw list which begins with 'qw(' is
index ab1ed241a2e68a2a4c5a02e8275cd1dbf12d43db..ab0b8ec10dc122d567e40e3596ca8b2812acc921 100755 (executable)
@@ -7011,7 +7011,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240903.01
+This man page documents perltidy version 20240903.02
 
 =head1 BUG REPORTS
 
index 4736c69142c43adaec57fb9c93330963442a59c7..47e56f02e797925e094d7fa93016029d94810fe7 100644 (file)
@@ -135,7 +135,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20240903.01';
+    $VERSION = '20240903.02';
 } ## end BEGIN
 
 sub DESTROY {
index 85fe35c687f0f33c40c3b89c4ec42fb9c6f705c7..4e0d5a0e9ebee940b0d9220972a3e38d4e8ce281 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 20240903.01
+This man page documents Perl::Tidy version 20240903.02
 
 =head1 LICENSE
 
index d0436d372897055b1368a14cd5ffd13329204257..40d3c5ac10470d611afe459673ce472fe6a59749 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index d6a6ffee4722a4b825ec760a8fa2fca45099712f..12cdaed25a066a29e521e916e75b9439ae5ce231 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use constant EMPTY_STRING => q{};
 
index 85b8ccb1a694735a1622214e18f37566a9c9013a..00d38b04dfd033136d04a17a5cc560934f5235da 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 2a4f50d1db865e575a2916e57522ea603609d8a8..0863c28da1c83ae6d2c291984031c12ef7933974 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 = '20240903.01';
+our $VERSION = '20240903.02';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 8ce6682b3b9f25ba94e0fad988dc2f7a32b77e00..60adfdc9b7d81e8775aee20b9abbee4c59c9f208 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use Carp;
 use English qw( -no_match_vars );
index 172a88e66d0749dbb3114271c9d1afa8a7154e77..30920d9bd87090d1b09801d57a8be9af367888e0 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index f92a69d7c655408cd53426b425b6570d8013484a..7750942a0c2493f07a723f2319a769b0f7f096c0 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use constant DEVEL_MODE => 0;
 
index 2a71a65a12aa140c668428cc727ade9e32bdb5f8..e3500b09ac4ef56e2f67cf72c2fd7654f74a40e0 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 BEGIN {
 
index fed6aaa17963f7bf6dad25761b584dd7d91c66ce..b04fe37949fe394663b6552db01f39ecf6a4ef64 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 use Carp;
 use English qw( -no_match_vars );
 
index f1e738df927a2c607234f4b3a1d5bda40edaf144..13f6c20ef54d77d1ec3d8a58434467d0ae238438 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 use Carp;
 
index b22ba5e7c3a769cc2f25efd793e05d017e21c8c4..1d71d1b0af374ff1dac8036299699fcf9587e0ad 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';    # perl 5.8.1 and later
 use Perl::Tidy::VerticalAligner::Alignment;
index 0a99b053110bbbb72c89e8361e67f46efaef27d3..5b394abc3c1c77c6a4078366cf409e392d6c9482 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 
 sub new {
     my ( $class, $rarg ) = @_;
index f03ad6574d10d7abe020de0f3aa5005ee2e03127..edbc9cfdb4d3da7d7cdd3e2ada367bca8bf79cb5 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.01';
+our $VERSION = '20240903.02';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {