# Perltidy Change Log
-## 2018 11 18
+## 2018 11 19
- Removed test case 'filter_example.t' which was causing a failure on a
Windows installation for unknown reasons, possibly due to an unexpected
- perltidyrc being read by the test script.
+ perltidyrc being read by the test script. Added VERSION numbers to all
+ new modules.
## 2018 11 17
=head1 VERSION
-This man page documents perltidy version 20181118
+This man page documents perltidy version 20181119
=head1 BUG REPORTS
<ul id="index">
<li><a href="#Perltidy-Change-Log">Perltidy Change Log</a>
<ul>
- <li><a href="#pod2018-11-18">2018 11 18</a></li>
+ <li><a href="#pod2018-11-19">2018 11 19</a></li>
<li><a href="#pod2018-11-17">2018 11 17</a></li>
<li><a href="#pod2018-02-20">2018 02 20</a></li>
<li><a href="#pod2018-02-19">2018 02 19</a></li>
<h1 id="Perltidy-Change-Log">Perltidy Change Log</h1>
-<h2 id="pod2018-11-18">2018 11 18</h2>
+<h2 id="pod2018-11-19">2018 11 19</h2>
<pre><code> - Removed test case 'filter_example.t' which was causing a failure on a
Windows installation for unknown reasons, possibly due to an unexpected
- perltidyrc being read by the test script. </code></pre>
+ perltidyrc being read by the test script. Added VERSION numbers to all
+ new modules.</code></pre>
<h2 id="pod2018-11-17">2018 11 17</h2>
<h1 id="VERSION">VERSION</h1>
-<p>This man page documents Perl::Tidy version 20181118</p>
+<p>This man page documents Perl::Tidy version 20181119</p>
<h1 id="LICENSE">LICENSE</h1>
<h1 id="VERSION">VERSION</h1>
-<p>This man page documents perltidy version 20181118</p>
+<p>This man page documents perltidy version 20181119</p>
<h1 id="BUG-REPORTS">BUG REPORTS</h1>
# Release version must be bumped, and it is probably past time for a
# release anyway.
- $VERSION = '20181118';
+ $VERSION = '20181119';
}
sub streamhandle {
=head1 VERSION
-This man page documents Perl::Tidy version 20181118
+This man page documents Perl::Tidy version 20181119
=head1 LICENSE
package Perl::Tidy::Debugger;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::DevNull;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new { my $self = shift; return bless {}, $self }
sub print { return }
sub close { return }
package Perl::Tidy::Diagnostics;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::FileWriter;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
# Maximum number of little messages; probably need not be changed.
my $MAX_NAG_MESSAGES = 6;
use strict;
use warnings;
use Carp;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
# 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 = '20181118';
+our $VERSION = '20181119';
use File::Basename;
use strict;
use warnings;
use Carp;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
my ( $package, $rscalar, $mode ) = @_;
use strict;
use warnings;
use Carp;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
my ( $package, $rarray, $mode ) = @_;
package Perl::Tidy::IndentationItem;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::LineBuffer;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::LineSink;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::LineSource;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::Logger;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
sub new {
package Perl::Tidy::Tokenizer;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
use Perl::Tidy::LineBuffer;
package Perl::Tidy::VerticalAligner;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
use Perl::Tidy::VerticalAligner::Alignment;
use Perl::Tidy::VerticalAligner::Line;
package Perl::Tidy::VerticalAligner::Alignment;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
{
package Perl::Tidy::VerticalAligner::Line;
use strict;
use warnings;
-our $VERSION = '20181118';
+our $VERSION = '20181119';
{
=head1 Perltidy Change Log
-=head2 2018 11 18
+=head2 2018 11 19
- Removed test case 'filter_example.t' which was causing a failure on a
Windows installation for unknown reasons, possibly due to an unexpected
- perltidyrc being read by the test script.
+ perltidyrc being read by the test script. Added VERSION numbers to all
+ new modules.
=head2 2018 11 17
# VERSION
-This man page documents perltidy version 20181118
+This man page documents perltidy version 20181119
# BUG REPORTS