# Perltidy Change Log
-## 2022 11 12.01
+## 2022 11 12.02
+
+ - Added option -bfvt=n, or --brace-follower-vertical-tightness=n,
+ for part of issue git #110. For n=2, this option looks for lines
+ which would otherwise be, by default,
+
+ }
+ or ..
+
+ and joins them into a single line
+
+ } or ..
+
+ where the or can be one of a number of logical operators or if unless.
+ The default is not to do this and can be indicated with n=1.
+
+ - Added option -cpb, or --cuddled-paren-brace, for issue git #110.
+ This option This will cause perltidy to join two lines which
+ otherwise would be, by default,
+
+ )
+ {
+
+ into a single line
+
+ ) {
- Added option -dbs, or --dump-block-summary, to dump summary
information about code blocks in a file to standard output. The
=head1 VERSION
-This man page documents perltidy version 20221112.01
+This man page documents perltidy version 20221112.02
=head1 BUG REPORTS
# then the Release version must be bumped, and it is probably past time for
# a release anyway.
- $VERSION = '20221112.01';
+ $VERSION = '20221112.02';
}
sub DESTROY {
=head1 VERSION
-This man page documents Perl::Tidy version 20221112.01
+This man page documents Perl::Tidy version 20221112.02
=head1 LICENSE
use strict;
use warnings;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use constant EMPTY_STRING => q{};
use constant SPACE => q{ };
package Perl::Tidy::DevNull;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub new { my $self = shift; return bless {}, $self }
sub print { return }
sub close { return }
use strict;
use warnings;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use constant EMPTY_STRING => q{};
package Perl::Tidy::FileWriter;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use constant DEVEL_MODE => 0;
use constant EMPTY_STRING => q{};
use Carp;
use English qw( -no_match_vars );
use List::Util qw( min max ); # min, max are in Perl 5.8
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
# The Tokenizer will be loaded with the Formatter
##use Perl::Tidy::Tokenizer; # for is_keyword()
package Perl::Tidy::HtmlWriter;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use English qw( -no_match_vars );
use File::Basename;
use strict;
use warnings;
use Carp;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use constant EMPTY_STRING => q{};
use strict;
use warnings;
use Carp;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub AUTOLOAD {
package Perl::Tidy::IndentationItem;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
BEGIN {
package Perl::Tidy::LineBuffer;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub AUTOLOAD {
package Perl::Tidy::LineSink;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub AUTOLOAD {
use strict;
use warnings;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use constant DEVEL_MODE => 0;
package Perl::Tidy::Logger;
use strict;
use warnings;
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use English qw( -no_match_vars );
use constant DEVEL_MODE => 0;
use warnings;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use Perl::Tidy::LineBuffer;
use Carp;
use warnings;
use Carp;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
use Perl::Tidy::VerticalAligner::Alignment;
use Perl::Tidy::VerticalAligner::Line;
{ #<<< A non-indenting brace
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub new {
my ( $class, $rarg ) = @_;
use strict;
use warnings;
use English qw( -no_match_vars );
-our $VERSION = '20221112.01';
+our $VERSION = '20221112.02';
sub AUTOLOAD {