]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20230912.03 20230912.03
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 6 Oct 2023 14:42:16 +0000 (07:42 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 6 Oct 2023 14:42:16 +0000 (07:42 -0700)
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 4cfd51f683c4d3f1b9a3f2aad7a2591deb965caa..b0ca09784f2a361a165cacd6dfa310e889dd3302 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.02
+## 2023 09 12.03
 
     - Added flag --space-signature-paren=n, or -ssp=n (issue git #125).
       This flag works the same as the existing flag --space-prototype-paren=n
@@ -18,7 +18,8 @@
         sub circle ( $xc, $yc, $rad );  # n=2 [space]
 
       The spacing in previous versions of perltidy corresponded to n=2 (always
-      a space). The new default value, n=1, will produce a space if and only if       there was a space in the input text.
+      a space). The new default value, n=1, will produce a space if and only
+      if there was a space in the input text.
 
     - The dump-block-summary option can report an if-elsif-elsif-.. chain
       as a single line item with the notation -dbt='elsif3', for example,
index 86c860b0d14cc99be6e42ba4fd033cdab30397b5..b8214f322ffa62f46038dd107500e98d7b459a3b 100755 (executable)
@@ -5911,7 +5911,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.02
+This man page documents perltidy version 20230912.03
 
 =head1 BUG REPORTS
 
index 5913e9212f07288df9b0f5627fc724f73f38d0fe..0429f29720c98d787caf409edb150e65e3620d6a 100644 (file)
@@ -132,7 +132,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230912.02';
+    $VERSION = '20230912.03';
 } ## end BEGIN
 
 sub DESTROY {
index 421409a2ab5e2ea84b35efe8654e5cbdcae152af..3bdcae603a6f154ed275087338d739bf72acf97d 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.02
+This man page documents Perl::Tidy version 20230912.03
 
 =head1 LICENSE
 
index 4cb211e4a4cbd15cf54890edfa9e0932b93b3110..e9b193b3dc4a49c8c891ed57d0fd4b033d4ef321 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 96df67b55393e563683e4752526307c3ec38375e..6bf4e1ffd7d3a45f700478988d0e4b7d696f78db 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use constant EMPTY_STRING => q{};
 
index 227ddc067d098c5cb15a893c3bd778cfe877aabf..f07c669dfc93b2573b39adb315d55cf19258d81a 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index b2c4d700738aeeb45a5869b419da839628e5fd2e..b970606273aebb6b9ea7de3371e2f2b8e2f0bd31 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.02';
+our $VERSION = '20230912.03';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 27ed4c4938cbd30ee87eb87195ab9ffadeef035f..6972c4909553737708f3f7d8ca433a3f1a9db6ee 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use English qw( -no_match_vars );
 use File::Basename;
index f5b7b97c2883aeccf74abaa24a0bcda3f6400912..7d6b4994ff981088c36dead3dc0795c488153d73 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 1f04df7d719ceb62bc3ba3688a49f90baf791594..577ec6f9819f8dea17dbbd834964efaef6f6286f 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use constant DEVEL_MODE => 0;
 
index 8d5b9dc405da774b1a053157a40991dbbdd1731e..e40cb147354579a98071a7aa592d5fa8c6eb696a 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 BEGIN {
 
index 44dc02c4e69b97ceddf3af8d87c23dfa4748c385..0af825fd2b54ab7d365fe43e2793daf698fe20db 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index f8117986455f9c64998556fedecdb12d6745e19f..016be88d1fa20557b135c503377930a107d6cbc3 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 use Carp;
 
index f70dd625eb8f0f62b37c046c709ab43d262a1c91..1d93293793330d2a30fcf87ceceb0e13a7896908 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Carp;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
 
index c5a3178051e66251cd0bfd4f2eb94224da6b9469..20de373f85a3431c2ae8582811b2584ba1327ca8 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 927142fcd2263b21f5eb9c666028a324e103c3ae..eab9d98672695ed51f45b3c2d5c9d00087ba048a 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.02';
+our $VERSION = '20230912.03';
 
 sub AUTOLOAD {