]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to .05 20230912.05
authorSteve Hancock <perltidy@users.sourceforge.net>
Sun, 5 Nov 2023 23:31:29 +0000 (15:31 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sun, 5 Nov 2023 23:31:29 +0000 (15:31 -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 e31050c61afb4329c8aef2b136040fd083f81ad8..5432a84ff8bb5ff61638a229e82a5bbc2efccddf 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.04
+## 2023 09 12.05
 
     - All parameters taking integer values are now checked for
       out-of-range values before processing starts. When a
index 54ec503fb1a5bc2b9061e4c1fb3fab930f46094a..64a14833c2edd1dea179b06215d0bece278787cc 100755 (executable)
@@ -5940,7 +5940,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.04
+This man page documents perltidy version 20230912.05
 
 =head1 BUG REPORTS
 
index 53d3683ad4a54c62f973001fbfad655a899f6adf..f2c92d64f8e488a3c6f38a24a5bb52e173511a43 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.04';
+    $VERSION = '20230912.05';
 } ## end BEGIN
 
 sub DESTROY {
index 36174693641bb117a28ab089fbec33fcdf81f29b..5244232dada0b24d98e44c6541d422ab4a951262 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.04
+This man page documents Perl::Tidy version 20230912.05
 
 =head1 LICENSE
 
index 7b17eabb8b9463cc6fcc6b9f2fdc0e86ec0ff96f..5e30f5b022eb9d5ae248b4f5432ae98f38aa392e 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index c8d5f7914b5738b1022f62b6d0ff2fca11d8ecea..5ec77e012d87a618bbb7e645f32887b260133c2d 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use constant EMPTY_STRING => q{};
 
index 83f981033b80124cc8535e1670e61634f1879ce5..8a0bac1def0f900673909263bc86557b2d1015cd 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 4af869e893b9be4a5b4c7b9993fe403332e98439..5249d7ca555bd9f1f7f97aeeea897bc79aedbae6 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.04';
+our $VERSION = '20230912.05';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 14ddf7c02795df2a0c50164cc88e0d52f0a047f4..411046dd2ee5be1d5a07d369ccebf150c3b833df 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use English qw( -no_match_vars );
 use File::Basename;
index e13f421f1d6b34b8590e675a0a936a488b3893a4..b8df588c6a4427676777c2701a73aaf860feffe7 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 13683632ce39e2cd28b22595527251e6b76a23ef..bc6a5c84d4bb6c11279e5922ad2a1bc0b7e62a91 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use constant DEVEL_MODE => 0;
 
index 3dffe82ac6849f99260d2d4c4358a9fcd42234e3..fe9db963ecf72093105f6c92519e1f8faac65561 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 BEGIN {
 
index cea4eacc874d7fa02d885bc9ca98b16e7baad65e..48a33f600e0bbf1fc92effc1b573cb979f02cae9 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 use English qw( -no_match_vars );
 
 use constant DEVEL_MODE   => 0;
index 91a284d1e1688fc5c1bf97057b07515b2d3662aa..1738ffaed065f5a018788c691634f5a0cf0c9979 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 use Carp;
 
index 12fecddf03daacb76a99a47dc4f949f48dc23d25..744b8ea2dfb366de6bb8bb2e4db9165d85337827 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index aee5105121b35856f9f813fdbfd0ea71938d40fa..57f065f577f027cc23fc98defc328998e70a13af 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 
 sub new {
     my ( $class, $rarg ) = @_;
index a408e88661ab8493d436eaf1cf7a36d372397bb3..e443cbd10453ecb9d64029adb83e1ef8fbad6343 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.04';
+our $VERSION = '20230912.05';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {