From: Steve Hancock Date: Sun, 20 Jun 2021 22:31:30 +0000 (-0700) Subject: bump version .01 X-Git-Tag: 20210402.01^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=397fa7f9e57e17fbb2729e1f6f9ceb7d1f807332;p=perltidy.git bump version .01 --- diff --git a/CHANGES.md b/CHANGES.md index 9ffb99a4..fb9e07f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Perltidy Change Log -## 2021 xx xx +## 2021 04 02.01 - Added a new option '--code-skipping', requested in git #65, in which code between comment lines '#<>V' is passed verbatim to the output @@ -23,7 +23,7 @@ add a terminal newline to the the output stream only if the input stream is terminated with a newline. - - A more complete list of updates is at + - Numerous minor fixes have been made. A more complete list of updates is at: https://github.com/perltidy/perltidy/blob/master/local-docs/BugLog.pod diff --git a/MANIFEST b/MANIFEST index 9949e84d..b4d99fd4 100644 --- a/MANIFEST +++ b/MANIFEST @@ -24,6 +24,7 @@ examples/lextest examples/perlcomment.pl examples/perllinetype.pl examples/perlmask.pl +examples/perltidy_hide.pl examples/perltidy_okw.pl examples/perltidyrc_dump.pl examples/perlxmltok.pl diff --git a/bin/perltidy b/bin/perltidy index bdd46ed3..ff29964d 100755 --- a/bin/perltidy +++ b/bin/perltidy @@ -4661,23 +4661,23 @@ dot is added, and the backup file will be F . The following list shows all short parameter names which allow a prefix 'n' to produce the negated form: - D anl asbl asc ast asu aws b baa baao - bar bbao bbb bbc bbs bl bli boa boc bok - bol bom bos bot cblx ce conv csc cscb cscw - dac dbc dcbl dcsc ddf dln dnl dop dp dpro - dsc dsm dsn dtt dwls dwrs dws f fll frm - fs fso gcs hbc hbcm hbco hbh hbhh hbi hbj - hbk hbm hbn hbp hbpd hbpu hbq hbs hbsc hbv - hbw hent hic hicm hico hih hihh hii hij hik - him hin hip hipd hipu hiq his hisc hiv hiw - hsc html ibc icb icp iob isbc iscl kgb kgbd - kgbi kis lal log lop lp lsl mem nib ohbr - okw ola olc oll olq opr opt osbc osbr otr - ple pod pvl q sac sbc sbl scbb schb scp - scsb sct se sfp sfs skp sob sobb sohb sop - sosb sot ssc st sts t tac tbc toc tp - tqw trp ts tsc tso vmll w wn x xci - xs + D anl asbl asc ast asu atnl aws b baa + baao bar bbao bbb bbc bbs bl bli boa boc + bok bol bom bos bot cblx ce conv cs csc + cscb cscw dac dbc dcbl dcsc ddf dln dnl dop + dp dpro dsc dsm dsn dtt dwls dwrs dws f + fll fpva frm fs fso gcs hbc hbcm hbco hbh + hbhh hbi hbj hbk hbm hbn hbp hbpd hbpu hbq + hbs hbsc hbv hbw hent hic hicm hico hih hihh + hii hij hik him hin hip hipd hipu hiq his + hisc hiv hiw hsc html ibc icb icp iob isbc + iscl kgb kgbd kgbi kis lal log lop lp lsl + mem nib ohbr okw ola olc oll olq opr opt + osbc osbr otr ple pod pvl q sac sbc sbl + scbb schb scp scsb sct se sfp sfs skp sob + sobb sohb sop sosb sot ssc st sts t tac + tbc toc tp tqw trp ts tsc tso vmll w + wn x xci xs Equivalently, the prefix 'no' or 'no-' on the corresponding long names may be used. @@ -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 20210402 +This man page documents perltidy version 20210402.01 =head1 BUG REPORTS diff --git a/lib/Perl/Tidy.pm b/lib/Perl/Tidy.pm index 46bd89d9..c5330593 100644 --- a/lib/Perl/Tidy.pm +++ b/lib/Perl/Tidy.pm @@ -110,7 +110,7 @@ BEGIN { # Release version must be bumped, and it is probably past time for a # release anyway. - $VERSION = '20210402'; + $VERSION = '20210402.01'; } sub DESTROY { diff --git a/lib/Perl/Tidy.pod b/lib/Perl/Tidy.pod index eef6524f..88810b0b 100644 --- a/lib/Perl/Tidy.pod +++ b/lib/Perl/Tidy.pod @@ -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 20210402 +This man page documents Perl::Tidy version 20210402.01 =head1 LICENSE diff --git a/lib/Perl/Tidy/Debugger.pm b/lib/Perl/Tidy/Debugger.pm index 0f487959..bee1705b 100644 --- a/lib/Perl/Tidy/Debugger.pm +++ b/lib/Perl/Tidy/Debugger.pm @@ -7,7 +7,7 @@ package Perl::Tidy::Debugger; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub new { diff --git a/lib/Perl/Tidy/DevNull.pm b/lib/Perl/Tidy/DevNull.pm index 345c27fa..6a69d8c5 100644 --- a/lib/Perl/Tidy/DevNull.pm +++ b/lib/Perl/Tidy/DevNull.pm @@ -7,7 +7,7 @@ package Perl::Tidy::DevNull; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub new { my $self = shift; return bless {}, $self } sub print { return } sub close { return } diff --git a/lib/Perl/Tidy/Diagnostics.pm b/lib/Perl/Tidy/Diagnostics.pm index cbda7b58..5201e6c9 100644 --- a/lib/Perl/Tidy/Diagnostics.pm +++ b/lib/Perl/Tidy/Diagnostics.pm @@ -20,7 +20,7 @@ package Perl::Tidy::Diagnostics; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/FileWriter.pm b/lib/Perl/Tidy/FileWriter.pm index 8dafdec7..7ef2bdba 100644 --- a/lib/Perl/Tidy/FileWriter.pm +++ b/lib/Perl/Tidy/FileWriter.pm @@ -7,7 +7,7 @@ package Perl::Tidy::FileWriter; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; use constant DEVEL_MODE => 0; diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index 7f6a4b33..5989b270 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -49,7 +49,7 @@ use constant DEVEL_MODE => 0; { #<<< A non-indenting brace to contain all lexical variables use Carp; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; # The Tokenizer will be loaded with the Formatter ##use Perl::Tidy::Tokenizer; # for is_keyword() diff --git a/lib/Perl/Tidy/HtmlWriter.pm b/lib/Perl/Tidy/HtmlWriter.pm index 6b3365da..87787c74 100644 --- a/lib/Perl/Tidy/HtmlWriter.pm +++ b/lib/Perl/Tidy/HtmlWriter.pm @@ -7,7 +7,7 @@ package Perl::Tidy::HtmlWriter; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; use File::Basename; diff --git a/lib/Perl/Tidy/IOScalar.pm b/lib/Perl/Tidy/IOScalar.pm index 2e86c423..a829f89e 100644 --- a/lib/Perl/Tidy/IOScalar.pm +++ b/lib/Perl/Tidy/IOScalar.pm @@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar; use strict; use warnings; use Carp; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/IOScalarArray.pm b/lib/Perl/Tidy/IOScalarArray.pm index a6ff1429..0225d06e 100644 --- a/lib/Perl/Tidy/IOScalarArray.pm +++ b/lib/Perl/Tidy/IOScalarArray.pm @@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray; use strict; use warnings; use Carp; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/IndentationItem.pm b/lib/Perl/Tidy/IndentationItem.pm index 8700a63d..d87dc6d5 100644 --- a/lib/Perl/Tidy/IndentationItem.pm +++ b/lib/Perl/Tidy/IndentationItem.pm @@ -8,7 +8,7 @@ package Perl::Tidy::IndentationItem; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; BEGIN { diff --git a/lib/Perl/Tidy/LineBuffer.pm b/lib/Perl/Tidy/LineBuffer.pm index c20b1dd7..fb938873 100644 --- a/lib/Perl/Tidy/LineBuffer.pm +++ b/lib/Perl/Tidy/LineBuffer.pm @@ -12,7 +12,7 @@ package Perl::Tidy::LineBuffer; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/LineSink.pm b/lib/Perl/Tidy/LineSink.pm index cb31b6dc..dcee5caa 100644 --- a/lib/Perl/Tidy/LineSink.pm +++ b/lib/Perl/Tidy/LineSink.pm @@ -8,7 +8,7 @@ package Perl::Tidy::LineSink; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/LineSource.pm b/lib/Perl/Tidy/LineSource.pm index d4a3012a..5bacab23 100644 --- a/lib/Perl/Tidy/LineSource.pm +++ b/lib/Perl/Tidy/LineSource.pm @@ -8,7 +8,7 @@ package Perl::Tidy::LineSource; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/Logger.pm b/lib/Perl/Tidy/Logger.pm index 1a968621..93c5c19e 100644 --- a/lib/Perl/Tidy/Logger.pm +++ b/lib/Perl/Tidy/Logger.pm @@ -7,7 +7,7 @@ package Perl::Tidy::Logger; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; sub AUTOLOAD { diff --git a/lib/Perl/Tidy/Tokenizer.pm b/lib/Perl/Tidy/Tokenizer.pm index f08fa131..dcbd47b7 100644 --- a/lib/Perl/Tidy/Tokenizer.pm +++ b/lib/Perl/Tidy/Tokenizer.pm @@ -21,7 +21,7 @@ package Perl::Tidy::Tokenizer; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; use Perl::Tidy::LineBuffer; use Carp; diff --git a/lib/Perl/Tidy/VerticalAligner.pm b/lib/Perl/Tidy/VerticalAligner.pm index 8eecfe8c..e45d3e55 100644 --- a/lib/Perl/Tidy/VerticalAligner.pm +++ b/lib/Perl/Tidy/VerticalAligner.pm @@ -1,7 +1,7 @@ package Perl::Tidy::VerticalAligner; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; use Perl::Tidy::VerticalAligner::Alignment; use Perl::Tidy::VerticalAligner::Line; diff --git a/lib/Perl/Tidy/VerticalAligner/Alignment.pm b/lib/Perl/Tidy/VerticalAligner/Alignment.pm index a9c3630b..5ad921e9 100644 --- a/lib/Perl/Tidy/VerticalAligner/Alignment.pm +++ b/lib/Perl/Tidy/VerticalAligner/Alignment.pm @@ -10,7 +10,7 @@ use warnings; { #<<< A non-indenting brace -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; # _column_ # the current column number # _saved_column_ # a place for temporary storage diff --git a/lib/Perl/Tidy/VerticalAligner/Line.pm b/lib/Perl/Tidy/VerticalAligner/Line.pm index 56b94ac0..2acb263f 100644 --- a/lib/Perl/Tidy/VerticalAligner/Line.pm +++ b/lib/Perl/Tidy/VerticalAligner/Line.pm @@ -8,7 +8,7 @@ package Perl::Tidy::VerticalAligner::Line; use strict; use warnings; -our $VERSION = '20210402'; +our $VERSION = '20210402.01'; BEGIN { my $i = 0; diff --git a/local-docs/BugLog.pod b/local-docs/BugLog.pod index 4c353f4a..c9af7cb3 100644 --- a/local-docs/BugLog.pod +++ b/local-docs/BugLog.pod @@ -4,7 +4,7 @@ =item B -Testing with randim input parameters produced a number of edge cases of +Testing with random input parameters produced a number of edge cases of unstable formatting which were traced to the parameter combinations which included -bbxi=2 and -cab=2. A small adjustment to length tolerances was made to fix the problem.