]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20230912.10 20230912.10
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 2 Jan 2024 00:37:09 +0000 (16:37 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 2 Jan 2024 00:37:09 +0000 (16:37 -0800)
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 fc70b47c44b9cc89105d86ac29d103972b22b54f..1da69f0d148cc627121acf623a2c5b7f9504466c 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.09
+## 2023 09 12.10
 
     - Added --dump-mixed-call-parens (-dmcp ) which will dump a list
       of operators which are sometimes followed by parens and sometimes not.
index 0ee4d26be3f64fa95f313f65598ab19be8cda9f3..66cb22ffd8150c7e61b5a5824d39278b406af87b 100755 (executable)
@@ -6142,7 +6142,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.09
+This man page documents perltidy version 20230912.10
 
 =head1 BUG REPORTS
 
index 58d1fadef09ae6f7541395c326bde7d9ca624bca..874f3c9327b88a956d1a5fa9920790341d045f91 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 = '20230912.09';
+    $VERSION = '20230912.10';
 } ## end BEGIN
 
 sub DESTROY {
index 020d0c4a5668426fbefd98fc62c0c791cc984d44..e9367806efc1480be662fb8a078b2729c75845dd 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 20230912.09
+This man page documents Perl::Tidy version 20230912.10
 
 =head1 LICENSE
 
index 51939e8b84a8dcaa0f275795dc1e7e443b4e6154..dfacc33f4ed7556508fdb8e711ea071512707464 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 9a7a1ccd006c92a63aa9f694c95edb65ea305ca6..63e6b000620c1f433e2ba4e8ecdeb5c17fddc32d 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use constant EMPTY_STRING => q{};
 
index 7a1f5df800afad80658e8980bd214d1de3e4d6cf..4f17e1dcbe215ba76e36c3253a9c2efb29e70c95 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 1cdcc5a1eca78b4d37b86955a9885cb36a054ae6..7376d851bfa221ad1b0e19299d45288afee2ce6e 100644 (file)
@@ -75,7 +75,7 @@ use constant SPACE        => 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 = '20230912.09';
+our $VERSION = '20230912.10';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 73c9ed683672ea6c9316a3392d10ffa5a1e9b8e7..e75e6f1319946438606ef22d0474a409edabc9ec 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use Carp;
 use English qw( -no_match_vars );
index faed2af36e580905c0554fb00f0748662c077c38..70a8076021301451c8450829463a22d4983aef01 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 7adda2b6c85757ff7c05d23338be1d08936d38e2..1d618b57279e358db0ecc93c0344921c79160267 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use constant DEVEL_MODE => 0;
 
index e6426464c3d48066f1a3c124e8830d896fa3fa30..23eb6d20fcc864364c166d421e4f2852e6a8291d 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 BEGIN {
 
index ecf10969f3d36a3c4bd4efcf23582c9fc60b5456..09705f305ff6f945bdf79da07e1effdc84355ceb 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 use Carp;
 use English qw( -no_match_vars );
 
index dd031ccbddb542e722fc45445e6b8d4fc4a4ced2..61884bff0028c254aae7de740f2616b5890f33b5 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 use Carp;
 
index cfd6c33a7c6d372363a6332a1720546d2b5e5d53..c36ec1fb34fda7881907a6670c95491a4a9ec66c 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index 572c6fd573a8d599a2315aafa70b1339ef0a8134..168672afa6460f8baa50265fd5bd1b8c212855d0 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 
 sub new {
     my ( $class, $rarg ) = @_;
index c4fc1beaed19f8588f38d57e3ef29ecbdef33bc1..756bb51ee47105b86e072f02ad9bffdab82b5d38 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.09';
+our $VERSION = '20230912.10';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {