]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20230912.11 20230912.11
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 2 Jan 2024 01:49:49 +0000 (17:49 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 2 Jan 2024 01:49:49 +0000 (17:49 -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 1da69f0d148cc627121acf623a2c5b7f9504466c..02c55d390c589da8dfe412f11c76b4a8075fefba 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.10
+## 2023 09 12.11
 
     - Added --dump-mixed-call-parens (-dmcp ) which will dump a list
       of operators which are sometimes followed by parens and sometimes not.
index 66cb22ffd8150c7e61b5a5824d39278b406af87b..2e7d722d54352f48ba73d2afa5ffa4ca0ed7ff64 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.10
+This man page documents perltidy version 20230912.11
 
 =head1 BUG REPORTS
 
index 874f3c9327b88a956d1a5fa9920790341d045f91..b5fdc073af49077e0ceb80ec208a79552257a6d0 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.10';
+    $VERSION = '20230912.11';
 } ## end BEGIN
 
 sub DESTROY {
index e9367806efc1480be662fb8a078b2729c75845dd..cabebbed5ba09806f189018a8ffbb286e9d69f7d 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.10
+This man page documents Perl::Tidy version 20230912.11
 
 =head1 LICENSE
 
index dfacc33f4ed7556508fdb8e711ea071512707464..16bc2b8d1e591593e38ac5837413ed09ef07614a 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 63e6b000620c1f433e2ba4e8ecdeb5c17fddc32d..07451c649cc6935a5717841ce5ae28c5b8c6a744 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use constant EMPTY_STRING => q{};
 
index 4f17e1dcbe215ba76e36c3253a9c2efb29e70c95..5b451e08afe9f1acf3c0a3fe46a5481433fff794 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index a16edb6f8535772cbe81bffcf06746d797b50873..a0e60d1a9a32fd691251d3bac64399cefcbe1907 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.10';
+our $VERSION = '20230912.11';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index e75e6f1319946438606ef22d0474a409edabc9ec..60be8e2c3f6903abd12256786fedc801c392a652 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use Carp;
 use English qw( -no_match_vars );
index 70a8076021301451c8450829463a22d4983aef01..1b719cc111479f262d994bc11ebca8b10ca5c723 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 1d618b57279e358db0ecc93c0344921c79160267..1a47120eec70abeb670daf71f98b4ffdc484b027 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use constant DEVEL_MODE => 0;
 
index 23eb6d20fcc864364c166d421e4f2852e6a8291d..c7226ae8ac2f972a420b77db7d2bc8f75a0a9eeb 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 BEGIN {
 
index 09705f305ff6f945bdf79da07e1effdc84355ceb..c70ac934923d6fcf7fe7c3e4665fffa234ed3469 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 use Carp;
 use English qw( -no_match_vars );
 
index 61884bff0028c254aae7de740f2616b5890f33b5..ff8cae030504d4c4528dad158f2178016e7bc97d 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 use Carp;
 
index c36ec1fb34fda7881907a6670c95491a4a9ec66c..3381b1234f4e1841fdc73a1cfff80244c0179d62 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index 168672afa6460f8baa50265fd5bd1b8c212855d0..4cdd0f4a202e7c34dc13b77f387da7f97cfca051 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 756bb51ee47105b86e072f02ad9bffdab82b5d38..46b7d442aa94560b7bb555de15ed3bfeb78dbbfc 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.10';
+our $VERSION = '20230912.11';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {