]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to .04 20221112.04
authorSteve Hancock <perltidy@users.sourceforge.net>
Wed, 25 Jan 2023 02:26:35 +0000 (18:26 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Wed, 25 Jan 2023 02:26:35 +0000 (18:26 -0800)
21 files changed:
CHANGES.md
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 c21387c50b4020e2d3102c33fc313037d5cc70ed..ad0f5390920bfd4eeb161c33589f1f2b8e9a2bb0 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 11 12.03
+## 2022 11 12.04
 
     - For the -b (--backup-and-modify-in-place) option, the file timestamps
       are changing (issue rt#145999).  First, if there are no formatting
index db1f9419dd99d72ce8c8df84c07a30aa0377e8bb..6c70f8db67bad874ee09fcd18c6e976d09103827 100755 (executable)
@@ -5517,7 +5517,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20221112.03
+This man page documents perltidy version 20221112.04
 
 =head1 BUG REPORTS
 
index 4a10a28ccf868fab4821ba141656a671f633dc75..cb0064ef57005da6e4e40143f75f1595c1d9e518 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 = '20221112.03';
+    $VERSION = '20221112.04';
 }
 
 sub DESTROY {
index c0596795f59f89031c34ff261e39073fa4c1b686..3981a317217c0d2c0532ca06385c3b353a49f9b5 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 20221112.03
+This man page documents Perl::Tidy version 20221112.04
 
 =head1 LICENSE
 
index 69c1b1ba90d07399bb9c4df51e8b921bde88dab4..b2dd78d4f6fcdc72a205586309deb4bc2edff604 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 108721243a2eb3b80a103689a954715ae70388bb..842585204b2f35ef4e2f1c5f3a445b1a3e4e477b 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index db412e09e8a58732c904105985632d1124abad98..7a82aa882076b1b9527d9813522355e3c544d4c2 100644 (file)
@@ -21,7 +21,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use constant EMPTY_STRING => q{};
 
index ccd7e39705bc5f2c78242686a7307adca86a6e8c..58b7e22ca6c44b2c6e16c5edcc828f617ade8ee0 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index db271148e07fd4325f09ee320506135b1f297468..69b728e307b43868254508f39ef2d1dbf71d29eb 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 = '20221112.03';
+our $VERSION = '20221112.04';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 73ac34b109d868e1abce26f88eb820c6ae7f0a73..c6fe7c55a21560e910d8a140dcf30e9778125165 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use English qw( -no_match_vars );
 use File::Basename;
index 83f31d025fdc905b11a6054e8e577ac04eb68568..64a171db2db265689d05368449fdc7ea21eedfba 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use constant EMPTY_STRING => q{};
 
index 35fe50d517ab39b71d17d3dbbf3fd0f51675e744..3b62a32a7e6f1a433c03f53281fdf63f06d29962 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 sub AUTOLOAD {
 
index 2721c13500ba8658cdf489867899a3e3cd9c73d5..f456eb559f2b665f9ccd69c73025422fb1bef001 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 BEGIN {
 
index e4f27c2737045311ac72bb4dc3b64e72c6de630c..1b0e91eab859cded15b917b8e552fdc83cca82f4 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 sub AUTOLOAD {
 
index cba938e4c99f89e90662d6834238041e3c1af7c3..2e2af90de885b61f480c312ac82647409f660e0f 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 sub AUTOLOAD {
 
index 46da091dcfd6f2243696cce62b65eec89827ee8a..b97533dd9f5a40ee17dc7e48038d79b2c332159b 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::LineSource;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use constant DEVEL_MODE => 0;
 
index f2282b2c090202a6bad959fd58a0618116ee90ae..dde26e307a2ff627372919f9b327625cc01d8bc0 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index d9f641d43722fe565277399005e09bd1b63426b7..d5bbeaba4b1118dd67c82f5c1c2169e81ce9bf45 100644 (file)
@@ -23,7 +23,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 6ed419edb0ce731268bb04fd07b4fe30c1837a60..76b729178f30029c59377459db9fd947c9e411f0 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index 337cbfad430c24c6bd4c5938dcf140b432102e42..b1b037bb4f6140a66ad652df8355e0a6d644582f 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 5d340dc4af3b7836d375c74ef4f85ecb7cf083e1..e11f66614eb8f2eda36b419d3c33fd19b34a9252 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20221112.03';
+our $VERSION = '20221112.04';
 
 sub AUTOLOAD {