]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to .06
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 9 Dec 2023 15:33:53 +0000 (07:33 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 9 Dec 2023 15:33:53 +0000 (07:33 -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 72afcc4973b092afe44fdec8b08fe4dce60ccf5a..8375c847dbb6024b73c979b3abf6b3a525dd6c96 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.05
+## 2023 09 12.06
 
     - Added --dump-variables (-dv) option to dump a list of variables with
       certain properties of interest. For example
@@ -13,7 +13,7 @@
          1778:u: my $input_file
          6089:r: my $j: reused - see line 6076
 
-      The values on the line are separated by colons are:
+      The values on the line which are separated by colons are:
 
         line number   - the number of the line of the input file
         issue         - a single letter indicating the issue, see below
index b21b285c2a5b693173fcb93d904a6366582be3e9..ac496d4d592e315a60ff5fe0013e5666d99bc138 100755 (executable)
@@ -6030,7 +6030,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.05
+This man page documents perltidy version 20230912.06
 
 =head1 BUG REPORTS
 
index caec85f731f244f20c725ca54bbaaaf904f2bbc9..793856a5af723cf09586f67dd2405369436d47c2 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.05';
+    $VERSION = '20230912.06';
 } ## end BEGIN
 
 sub DESTROY {
index 5244232dada0b24d98e44c6541d422ab4a951262..e4d65badce7a5f4315169f5831e2cffb5483644b 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.05
+This man page documents Perl::Tidy version 20230912.06
 
 =head1 LICENSE
 
index 5e30f5b022eb9d5ae248b4f5432ae98f38aa392e..07d898dfd6471351dffd222e835c3b4619eaad09 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 5ec77e012d87a618bbb7e645f32887b260133c2d..08e05e16acb0604b263852543e9dad9f43da7b36 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use constant EMPTY_STRING => q{};
 
index 6832f9896aa765bcea4709b48a7743f0c4300ee4..b0e4b70bb7247465275338ab6bb531e47462cd78 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 43a69ed468e74d3bf45142ffe9d52bbfd586fe30..a667ba80ca15b8c1b242cd98be174cae5605b94c 100644 (file)
@@ -66,7 +66,7 @@ use strict;
 use warnings;
 
 # DEVEL_MODE gets switched on during automated testing for extra checking
-use constant DEVEL_MODE   => 1;
+use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
 
@@ -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.05';
+our $VERSION = '20230912.06';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index b5ebae83755015b664eb4f8331eab2407d4286ab..dbd5f96b32cb2b54447802b11422f3b17f4f0ac5 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use English qw( -no_match_vars );
 use File::Basename;
index cd419e4e7cde635ff2b762e4ea494bc6bb00b1d7..f5c54a3cfe06fc68248c2273d806b376f6cd8c44 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index bc6a5c84d4bb6c11279e5922ad2a1bc0b7e62a91..3db562c4a8c88f476dedfb7af3ae4da656cd0e97 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use constant DEVEL_MODE => 0;
 
index fe9db963ecf72093105f6c92519e1f8faac65561..5a62b0345842a7b6ef4b6b81fb31f489b38e0303 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 BEGIN {
 
index fc66de6c21648694a3dd1dc060aa39cde42f3aec..712544f64b1261889b681015e5a9ce6cfa121ef2 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 64a386d3f97007c7afc0ec8ebcd5d14571482703..df382081c9e7bf596599973d432648b6a812de77 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 use Carp;
 
index c8d060b7c08480292966400102227a74f5427f5e..382f657c88908d4e055bfedb57628dd7981809ba 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index 57f065f577f027cc23fc98defc328998e70a13af..136364d00c9c7a8524468322f66bebb840344e8e 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 
 sub new {
     my ( $class, $rarg ) = @_;
index e443cbd10453ecb9d64029adb83e1ef8fbad6343..cc74b3c29062ac6caa925c2a0363d2f928d01b93 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.05';
+our $VERSION = '20230912.06';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {