]> git.donarmstrong.com Git - perltidy.git/commitdiff
bump version to 20240903.04 20240903.04
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 5 Oct 2024 20:21:59 +0000 (13:21 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 5 Oct 2024 20:21:59 +0000 (13:21 -0700)
17 files changed:
CHANGES.md
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 9e3ee6032edd402d6388adcdcad0059e936b3b0a..792a108461169894ed5b27b71c95d67a1c9314e8 100644 (file)
@@ -1,6 +1,8 @@
 # Perltidy Change Log
 
-## 2024 09 03.03
+## 2024 09 03.04
+
+    - Fix git #165, strings beginning with v before => gave incorrect error message
 
     - The parameter --add-lone-trailing-commas, -altc, is now on by default.
     This will simplify input for trailing comma operations. Use
index 7d81320f6510a1f4f6e6a70536df4392a479efa2..470a54bdbeb4850ce769ed27ba93d8fd4bd304e3 100755 (executable)
@@ -7101,7 +7101,7 @@ The perltidy binary uses the Perl::Tidy module and is installed when that module
 
 =head1 VERSION
 
-This man page documents perltidy version 20240903.03
+This man page documents perltidy version 20240903.04
 
 =head1 BUG REPORTS
 
index f996b96f699227356cbe4d6cd786f378bd794915..2d1d1ad61122654018a1ea00f3dfba02bf97fe89 100644 (file)
@@ -135,7 +135,7 @@ BEGIN {
     # then the Release version must be bumped, and it is probably past time for
     # a release anyway.
 
-    $VERSION = '20240903.03';
+    $VERSION = '20240903.04';
 } ## end BEGIN
 
 sub DESTROY {
index 22cdc1b2cc42965687bdd89ef17ba7799f49256f..91c211733565406792bb7c1b1906fd1fc6d0471c 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 20240903.03
+This man page documents Perl::Tidy version 20240903.04
 
 =head1 LICENSE
 
index e120d88bd8d24bea7ba7fa27a0787d1f798ef122..c0f9a749ac299620739ae4ea33c0443078f7fc40 100644 (file)
@@ -8,7 +8,7 @@ package Perl::Tidy::Debugger;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use constant EMPTY_STRING => q{};
 use constant SPACE        => q{ };
index 7f4595f28f23ec86a0f54919bc41bc80aeccc9d9..404f6deffe77065cb6f87107d962100f37eb6cef 100644 (file)
@@ -18,7 +18,7 @@ package Perl::Tidy::Diagnostics;
 use strict;
 use warnings;
 use English qw( -no_match_vars );
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use constant EMPTY_STRING => q{};
 
index 976c3767c2ad7d124cf25fdb3ab55f30c01bb4ea..8ee4be9dc3d8b4f5f1afc86c1a5d3ca3d6ccb319 100644 (file)
@@ -16,7 +16,7 @@
 package Perl::Tidy::FileWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index 3968f9f1a207c6938a4e156bcf39169e602d8240..27dbe9e667566bf825f5f9c9388e1b4320de441d 100644 (file)
@@ -76,7 +76,7 @@ use constant BACKSLASH    => 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 = '20240903.03';
+our $VERSION = '20240903.04';
 
 # The Tokenizer will be loaded with the Formatter
 ##use Perl::Tidy::Tokenizer;    # for is_keyword()
index b0b5a1fe7df60a6a5875afbe53d3ee617a3599fe..6c779bedc6ed98b865dc0f7f1924fecacd1fe30e 100644 (file)
@@ -7,7 +7,7 @@
 package Perl::Tidy::HtmlWriter;
 use strict;
 use warnings;
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use Carp;
 use English qw( -no_match_vars );
index 7829379b727d71aebeb22cc78ea22d8ba97260e5..70bd560f0e10d6a0076ab1a04f333a37eba89142 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::IOScalar;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use constant DEVEL_MODE   => 0;
 use constant EMPTY_STRING => q{};
index b6aedd4f2a87ca466085f736a8c718eb0ef2649e..d91357e4c37087646304b82500cdb07d1df0ba87 100644 (file)
@@ -14,7 +14,7 @@ package Perl::Tidy::IOScalarArray;
 use strict;
 use warnings;
 use Carp;
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use constant DEVEL_MODE => 0;
 
index b5f832edad062d5c8e37b70871311454b453688c..a7d37d5838ca41cd992a069df912760b9e603ab7 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::IndentationItem;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 BEGIN {
 
index 01844ed3e028f02b2577c29e19b40d773c76caf4..20deef5b80e1d925690fc4b9da0a5a86406ba85c 100644 (file)
@@ -8,7 +8,7 @@
 package Perl::Tidy::Logger;
 use strict;
 use warnings;
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 use Carp;
 use English qw( -no_match_vars );
 
index 771bbe566a9ba10bf0fe84f9092f9d7439c6e55b..48292366f7e194facb4e8d5a4b68a543fbdd1056 100644 (file)
@@ -33,7 +33,7 @@ use strict;
 use warnings;
 use English qw( -no_match_vars );
 
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 use Carp;
 
index f2519e0ff8310399031f44a50caefa816351c07f..4bc78755d802468a9646df73fd1ffb6e7b5c6697 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 
 { #<<< A non-indenting brace to contain all lexical variables
 
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 use English qw( -no_match_vars );
 use Scalar::Util 'refaddr';    # perl 5.8.1 and later
 use Perl::Tidy::VerticalAligner::Alignment;
index 1e9997684cd44fe9c03c0819d2d7ae092f9fdf34..a64ec43ebd2f2c4361d15a50569089abc6c370de 100644 (file)
@@ -9,7 +9,7 @@ package Perl::Tidy::VerticalAligner::Alignment;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 
 sub new {
     my ( $class, $rarg ) = @_;
index 1b1250ca6d847be2d4eabe8062a710234ddc0eb8..7a0e4a68a8f19efc85cfe60c47c02178c51f8d77 100644 (file)
@@ -10,7 +10,7 @@ package Perl::Tidy::VerticalAligner::Line;
 use strict;
 use warnings;
 
-our $VERSION = '20240903.03';
+our $VERSION = '20240903.04';
 use English qw( -no_match_vars );
 
 sub AUTOLOAD {