]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to .04 20220217.04
authorSteve Hancock <perltidy@users.sourceforge.net>
Sun, 17 Apr 2022 14:26:41 +0000 (07:26 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sun, 17 Apr 2022 14:26:41 +0000 (07:26 -0700)
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 10a7165e96d552a513f81e06a734f5a3501cc631..b337dcc5ebd882a1e887cd930ed2dae550c3f629 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2022 02 17.03
+## 2022 02 17.04
 
     - The flag --encode-output-strings, or -eos, is now set on by default, as
       noted in the discussion of issue git #92.  This has no effect on the use
         use Getopt::Long qw(GetOptions);
         use Fcntl qw(O_RDONLY O_WRONLY O_EXCL O_CREAT);
         use Symbol qw(gensym);
+        use Exporter ();
 
         # new default
         use Getopt::Long qw(GetOptions);
         use Fcntl        qw(O_RDONLY O_WRONLY O_EXCL O_CREAT);
         use Symbol       qw(gensym);
+        use Exporter     ();
 
     - Fixed and reactivated two failing tests (were reading local .perltidyrc file)
 
index b9c0468332aec4176973aa720eafe290874f328f..303a7cee77981021ec4574a7265193b0d0468dde 100755 (executable)
@@ -5144,7 +5144,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20220217.03
+This man page documents perltidy version 20220217.04
 
 =head1 BUG REPORTS
 
index 1de80ad573e68653b6b692470d7b7ef0b90e66df..cb007517a45b5e205d764402617dd884aebf81a8 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20220217.03';
+    $VERSION = '20220217.04';
 }
 
 sub DESTROY {
index 2092c125ff5565aa73f74f3cc9fdf01baedc671d..a00cb432d69bf24e8328fb1236d6dbb179c84c97 100644 (file)
@@ -481,7 +481,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20220217.03
+This man page documents Perl::Tidy version 20220217.04
 
 =head1 LICENSE
 
index 36e9bf7d988f091b4cdca54a996ed1f30e805d26..e60ecf8deb09a0a2c7fbf074a0f9c170b4231ae4 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub new {
 
index 73921f2dd16e900959f5e47711e5ceabd5a63841..b58c07e8a3c7028e20e4ed5b6319fe9858e0012d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 57750a8f2bdebf174e60cdd41b00633bdfa5f8c5..df74dadac446665a85f624e82733c81a0069dda5 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index 83ec3ec9c7b66b734df94c31683698f10cf3c7d4..5f2c871c24f544b8aedaf246609dece869ba3375 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 use constant DEVEL_MODE => 0;
 
index 7eb923c4f424dffb3ecfe8ea863b035ea610846b..4ea7174af539acfc9d1fc857ebb12a507fad1bf6 100644 (file)
@@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0;
 { #<<< A non-indenting brace to contain all lexical variables
 
 use Carp;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 76f0d55a7425ce8edf13e7cdd5257c51cb180511..c33a2c3b918741f4c85c90f0ab06455ad54da6fa 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 use File::Basename;
 
index 2238c35703275f31c6ef934a9f0a6aba3ab06507..b89e52bf5265399140cdab47fafe39026e224b17 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index 56aa0a98ad46c7b68cd6d52bd10c0bc2dbbb0c24..8a1c7dfffa821b107edb5e97083ae908a3a12a3c 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index f4ddc841ea41fd30863cb0a53ae898405b432ab9..0e7364c151912f03032616a431fec652ff581b84 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 BEGIN {
 
index c524525b0e3ce010e07c7be42c9600d6a65e9e63..6b63165d103b1d406f5681d812f2e6246def64d8 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index 571f40e74411017a82ddf8029555f46b646ccd3a..7d6a576b01c298f75e41dccd3529c8094ab24b63 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index 2bca515c44ea0109d82ff017380fe7d8b98fa8f2..f0001fab83200d068a1cb48fbd4c6bdbb5430d24 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index b0587172acf6494492c7142b7c75d1d0741a8d3c..58491837c75c162d9794911cea696826f691bc5a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 sub AUTOLOAD {
 
index a8497466ceab3d3e7b79701e5438b9f0064d63d4..519000451a7d9caab8a4c7ada253716bbc8a2db6 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 # this can be turned on for extra checking during development
 use constant DEVEL_MODE => 0;
index 63103281fc4b90f5e552e08bdda1aa95c4070606..200dc0d65c4f109ffa2b90ccd351f90eda75f60a 100644 (file)
@@ -2,7 +2,7 @@ package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index e5f58b757c86bb3f2325361c505175fc8b24a634..8bf14c186d08858486bc6c79a57e9507b7b4175b 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 BEGIN {
 
index 85a852d984f5e56c709156979150c7d97046ab1b..b0e471a6e63a58fa585e4b5fe6908f5008df462c 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20220217.03';
+our $VERSION = '20220217.04';
 
 BEGIN {