]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 0.02 20210625.02
authorSteve Hancock <perltidy@users.sourceforge.net>
Fri, 9 Jul 2021 18:54:43 +0000 (11:54 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Fri, 9 Jul 2021 18:54:43 +0000 (11:54 -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 67968d7eea0e455d8550082d02640997c7375bc4..d5180cbede0cbd0beac403a8cdc4882d45831253 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2021 06 25.01
+## 2021 06 25.02
 
     - 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
index 7fa7627260d42ffd697c8dddf914661b40c12424..f93f0daa6964b1589baa8877faebbf58e14d8e28 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.01
+This man page documents perltidy version 20210625.02
 
 =head1 BUG REPORTS
 
index edda1c9503b44da7d2989e0ddf4921b3643e0d29..40ffb1695b62d651ff1eb8082c30f605cc2d52c8 100644 (file)
@@ -110,7 +110,7 @@ BEGIN {
     # Release version must be bumped, and it is probably past time for a
     # release anyway.
 
-    $VERSION = '20210625.01';
+    $VERSION = '20210625.02';
 }
 
 sub DESTROY {
index 91f90a7b2b4c920fc81e994bb87035cb2f01cc85..49fd2a09c311961ef6ebc22d4d6615ae8924bfa3 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.01
+This man page documents Perl::Tidy version 20210625.02
 
 =head1 LICENSE
 
index f4f88e40a29660578fc5d8665b3e18a0e909830d..350ec98beb7b9a0f21967dd6d5890d08043db147 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Debugger;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub new {
 
index 819e1f9b97ddcf9524b7fb882e14dd2a8414e141..d5832f123243aeb9ebd34da0160cd0b33dd6e048 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::DevNull;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 sub new   { my $self = shift; return bless {}, $self }
 sub print { return }
 sub close { return }
index 9461f0a9a17435b84b491aba752e7cd90e521b44..b0e1934c6a30408967627ac0c0cff73d7855e0b3 100644 (file)
@@ -20,7 +20,7 @@
 package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index 3d75e3fea07e657c978235574577c35950a2de90..ac6cd6ed89a7bb296eb23ed09bccfbf7fbdd5e83 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 use constant DEVEL_MODE => 0;
 
index 69d0cdfad73c24720d9a69f61d33b4aff160cabb..31841a42741275010b496cd5d883ddb88bd75cbb 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.01';
+our $VERSION = '20210625.02';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 5ba203e091f89176a9c1389b7d5dc08b71bce50c..b9299a8bcf55f68e60462ec89ab8e2630623dc4c 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 use File::Basename;
 
index be9c38edfea52eb92b032ca0fe142067b9d9df59..a14e5bda8b545a540836aad4737feb5700ed1bd5 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index beab9144f3bca4618e56120173d51c9e4768c0f7..f185a573a5534adb87474a568081995fd0312097 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index 810f239e8d148babe8f63178e3e807c13844b5dd..ea59c5ad0821bc534a017727fa826f157f12826a 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 BEGIN {
 
index d51a8e2498cd1d788afd4e1fba895cee9428288f..d695102d7c33f187b02f0a2ffd96bbf48ffff827 100644 (file)
@@ -12,7 +12,7 @@
 package Perl::Tidy::LineBuffer;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index db712caa37bb1692646c882088e64eb42826948a..2cabaebc5744fc5f3e4b2a1daa4769a14263ec85 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSink;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index 79de9dfb019aa61d4e6cea5a46c9afca87bc9112..bd95f0e7787b5a0ad680a0e77a090171c97eefb9 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::LineSource;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index afd748d9581ec1757443b37d539108e38036c6f9..74214ad32e5b0c2829d66f518ce6b99126e7638f 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 sub AUTOLOAD {
 
index c82a7d5c5bc8622242b7764674efeb0840a74395..6a5492064f4d72a107e1842de7460bf17f5ac6ea 100644 (file)
@@ -21,7 +21,7 @@
 package Perl::Tidy::Tokenizer;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 use Perl::Tidy::LineBuffer;
 use Carp;
index 9b473761c7b0f42af6520ea720a0864577f9aff5..f77d47fe8f78546fa957c3e0531b447c0edc1805 100644 (file)
@@ -1,7 +1,7 @@
 package Perl::Tidy::VerticalAligner;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index ad1b83892f5a4f567b8586b58c52dab4d4402e1a..6d34f664dd90a88733948783fe0957a7892ada87 100644 (file)
@@ -10,7 +10,7 @@ use warnings;
 
 { #<<< A non-indenting brace
 
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 #    _column_          # the current column number
 #    _saved_column_    # a place for temporary storage
index 8a37dd50f65abe0e11c32ce5db47aac2d6a07c45..5304248ad71de814f1df5bdbfa8d0e9298e07058 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
-our $VERSION = '20210625.01';
+our $VERSION = '20210625.02';
 
 BEGIN {
     my $i = 0;