]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump to version 20230912.12 20230912.12
authorSteve Hancock <perltidy@users.sourceforge.net>
Sun, 7 Jan 2024 01:53:34 +0000 (17:53 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sun, 7 Jan 2024 01:53:34 +0000 (17:53 -0800)
This should be close to the next release to CPAN

19 files changed:
CHANGES.md
MANIFEST
MANIFEST.SKIP
bin/perltidy
lib/Perl/Tidy.pm
lib/Perl/Tidy.pod
lib/Perl/Tidy/Debugger.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/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 9066958d1b97ea7f706972940466b475046cbd59..1a210672fab608fa48700d12a3c5e94b4fb5bc42 100644 (file)
@@ -1,6 +1,6 @@
 # Perltidy Change Log
 
-## 2023 09 12.11
+## 2023 09 12.12
 
     - Added --dump-mixed-call-parens (-dmcp ) which will dump a list of
       operators which are sometimes followed by parens and sometimes not.
index d30543beaa6d4b625fd054e0d20a98ed05b0a619..d4060a2238ad638cff62e364b49fb16458de31ce 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -27,7 +27,6 @@ examples/perllinetype.pl
 examples/perlmask.pl
 examples/perltidy_hide.pl
 examples/perltidy_okw.pl
-examples/perltidyrc_dump.pl
 examples/perlxmltok.pl
 examples/pt.bat
 examples/README
@@ -50,7 +49,7 @@ lib/Perl/Tidy/VerticalAligner.pm
 lib/Perl/Tidy/VerticalAligner/Alignment.pm
 lib/Perl/Tidy/VerticalAligner/Line.pm
 Makefile.PL
-MANIFEST                       This list of files
+MANIFEST
 pm2pl
 README.md
 t/.gitattributes
index b01027e528890ab48276146e41b717cae72665d2..be87c32b58fc9a495b57f105a70c3c8a095ccb25 100644 (file)
@@ -101,6 +101,9 @@ _config.yml
 # perlcritic config file
 \.perlcriticrc
 
+# perltidyrc
+\bperltidyrc
+
 # any shell scripts
 \.sh$
 
index 2c3eb2c20734c83e64e517571212c510b4a670cb..f320a302721ab98ad4b56839c766b3fe4adff742 100755 (executable)
@@ -6191,7 +6191,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20230912.11
+This man page documents perltidy version 20230912.12
 
 =head1 BUG REPORTS
 
index 18d1cd3e2913aabf06dcf427f81821b7b3c589c7..983af14a44a35c9b741de9eff15afe89d750b276 100644 (file)
@@ -131,7 +131,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20230912.11';
+    $VERSION = '20230912.12';
 } ## end BEGIN
 
 sub DESTROY {
index cabebbed5ba09806f189018a8ffbb286e9d69f7d..e7f4cb90b2bc4c4eb301ce7c359a2dea1685fdcf 100644 (file)
@@ -469,7 +469,7 @@ The module 'Perl::Tidy' comes with a binary 'perltidy' which is installed when t
 
 =head1 VERSION
 
-This man page documents Perl::Tidy version 20230912.11
+This man page documents Perl::Tidy version 20230912.12
 
 =head1 LICENSE
 
index 16bc2b8d1e591593e38ac5837413ed09ef07614a..3a004279be0450d397df8a2af6204d3d333ec77d 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 4128607156c5a2321796975388c0ab06d2fb2e44..6f443b4e69bb3f6e9bea032a95ef6234601dea1e 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use constant EMPTY_STRING => q{};
 
index 5b451e08afe9f1acf3c0a3fe46a5481433fff794..6527fe63281fc3e04921bc0cdc7aee59c86205e6 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 6d6afdf41ab1066151ee0a3f7a103844eee3fc51..3cdac46df49c2212d76b5bbbf822d5ee59949fda 100644 (file)
@@ -75,7 +75,7 @@ use constant SPACE        => q{ };
 use Carp;
 use English    qw( -no_match_vars );
 use List::Util qw( min max first );    # min, max first are in Perl 5.8
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index 60be8e2c3f6903abd12256786fedc801c392a652..2a2de877ee9f903b56d193b905bd40eb6688a902 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use Carp;
 use English qw( -no_match_vars );
index f400052dbd977da64384c8f05ec3cea950be4088..12350dbb533c0f50d5585eb829d0bd364d24aad9 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 076b1c0e8b4e11ea53a979f81993bcfa86862bcb..fdc46d189171aee36090d6a3613e7040db964779 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use constant DEVEL_MODE => 0;
 
index c7226ae8ac2f972a420b77db7d2bc8f75a0a9eeb..0f5852c4b9b73d41859ed4a090d357c2dc17d667 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 BEGIN {
 
index 3fdff6ea359f4e9bbea624b9194a0ad6bd04c369..27722cbf540445dec83455bb0248a82f1a28580d 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 use Carp;
 use English qw( -no_match_vars );
 
index 6876421927956c5786c8ac8ad64adcf0b7a1f3fe..47ffbaeccf2c076b317f7d486373160eebe8acfc 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 use Carp;
 
index fee0f2cb0b6b78e0a8db58559dbc7bfe062ef99e..04d9afe666658598f60f8f389b7984d81ee9326c 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 use English qw( -no_match_vars );
 use Perl::Tidy::VerticalAligner::Alignment;
 use Perl::Tidy::VerticalAligner::Line;
index 3d20c8a06a5bd4adc4fb0d563425f793e0c8e48f..62e8aa91f9c2807ceecd75372b0efd4c501087df 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 46b7d442aa94560b7bb555de15ed3bfeb78dbbfc..58a802f3de81447bf9bd40bafe0475d2697b9aee 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20230912.11';
+our $VERSION = '20230912.12';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {