]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version by .01
authorSteve Hancock <perltidy@users.sourceforge.net>
Wed, 30 Jun 2021 14:11:24 +0000 (07:11 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Wed, 30 Jun 2021 14:11:24 +0000 (07:11 -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 4b877beace994669acbeccaaa0f81f5d7ceb303d..67968d7eea0e455d8550082d02640997c7375bc4 100644 (file)
@@ -1,6 +1,12 @@
 # Perltidy Change Log
 
-## 2021 xx xx
+## 2021 06 25.01
+
+    - Removed the limit on -ci=n when -xci is set, reference: rt #136415.
+      This update removes a limit in the previous two versions in which the
+      value of -ci=n was limited to the value of -i=n when -xci was set.
+      This limit had been placed to avoid some formatting instabilities,
+      but recent coding improvements allow the limit to be removed.
 
 ## 2021 06 25
 
index 8e0a8c1cbefd49215f9091f04d3caf4321dca651..7fa7627260d42ffd697c8dddf914661b40c12424 100755 (executable)
@@ -4776,7 +4776,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20210625
+This man page documents perltidy version 20210625.01
 
 =head1 BUG REPORTS
 
index 2fe7cd15cb34b93841acabbf036755d76401409c..edda1c9503b44da7d2989e0ddf4921b3643e0d29 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20210625';
+    $VERSION = '20210625.01';
 }
 
 sub DESTROY {
index 68c07d6d513665132f46806b52f8e139da86fae6..91f90a7b2b4c920fc81e994bb87035cb2f01cc85 100644 (file)
@@ -432,7 +432,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20210625
+This man page documents Perl::Tidy version 20210625.01
 
 =head1 LICENSE
 
index f2a44d55f79c266f4bd4c27452b5a36a2028c7b7..f4f88e40a29660578fc5d8665b3e18a0e909830d 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub new {
 
index 4bbcf676aff5d7b3f073c28c6d34eb209238c850..819e1f9b97ddcf9524b7fb882e14dd2a8414e141 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 416fbe560623c845bffaff3e20d47ed6d91bc93d..9461f0a9a17435b84b491aba752e7cd90e521b44 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 94bdac1b6a6dcf9997fbc82c62d8edbb9a609aec..3d75e3fea07e657c978235574577c35950a2de90 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 use constant DEVEL_MODE => 0;
 
index 3dbc3e2d7433a15acb1eaf08d0cc61d4ab14490f..94add7d810583a20e11a9a8390210b4cb5ebe8c5 100644 (file)
@@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0;
 { #<<< A non-indenting brace to contain all lexical variables
 
 use Carp;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index fc89c9220aa6a87c39dd1893d72d45baa143172d..5ba203e091f89176a9c1389b7d5dc08b71bce50c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 use File::Basename;
 
index 06b8e5a9a7aa5e4364c00d3151b9c5cc5afa8bbb..be9c38edfea52eb92b032ca0fe142067b9d9df59 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 66091600e45089e7b7d347a9b0d52705d5cd8b29..beab9144f3bca4618e56120173d51c9e4768c0f7 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 0c0c47fec0f5a38cd4c6dd52a4e4b89a85af5c06..810f239e8d148babe8f63178e3e807c13844b5dd 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 BEGIN {
 
index 83a58ee571ea11086ca0dd6015fbb40f73086b37..d51a8e2498cd1d788afd4e1fba895cee9428288f 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 1f070451e07ebf2eb6e8775bc7b286dd7f658873..db712caa37bb1692646c882088e64eb42826948a 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 0f5ace0b11aca179cf03eca7c32abdf5dffa07d6..79de9dfb019aa61d4e6cea5a46c9afca87bc9112 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index 0c06a8c6faa228daf8e98fafaea6c5260aa7a85f..afd748d9581ec1757443b37d539108e38036c6f9 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 sub AUTOLOAD {
 
index af59785f5128d67a8b4d3c641a587c52ae1b0a6d..2ab93c13b23140ff5eb87bb7270100542eebe6ba 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 198d864922e6e8afaae0f268dc1ff8710b819935..9b473761c7b0f42af6520ea720a0864577f9aff5 100644 (file)
@@ -1,7 +1,7 @@
 package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index d8b06b00671e28874db866ca1ba46c2ae51fa33d..ad1b83892f5a4f567b8586b58c52dab4d4402e1a 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 #    _column_          # the current column number
 #    _saved_column_    # a place for temporary storage
index f1ee84b97a8808b1fa46f98efc040b9dd1ea0202..8a37dd50f65abe0e11c32ce5db47aac2d6a07c45 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20210625';
+our $VERSION = '20210625.01';
 
 BEGIN {
     my $i = 0;