Skip to content

Commit

Permalink
Bump version numbers for feature/warnings/deparse so tests complete
Browse files Browse the repository at this point in the history
  • Loading branch information
scottchiefbaker committed Mar 25, 2021
1 parent 8c53be5 commit 79eaec4
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/B/Deparse.pm
Expand Up @@ -52,7 +52,7 @@ use B qw(class main_root main_start main_cv svref_2object opnumber perlstring
MDEREF_SHIFT
);

$VERSION = '1.56';
$VERSION = '1.57';
use strict;
our $AUTOLOAD;
use warnings ();
Expand Down
11 changes: 10 additions & 1 deletion lib/feature.pm
Expand Up @@ -5,7 +5,7 @@

package feature;

our $VERSION = '1.63';
our $VERSION = '1.64';

our %feature = (
fc => 'feature_fc',
Expand Down Expand Up @@ -419,6 +419,15 @@ C<try> are caught by executing the body of the C<catch> block.
For more information, see L<perlsyn/"Try Catch Exception Handling">.
=head2 The 'trim' feature
C<use feature 'trim'> tells the compiler to enable the C<trim> function, which
removes leading and trailing whitespace from strings.
See L<perlfunc/trim> for details.
This feature is available from Perl 5.34 onwards.
=head1 FEATURE BUNDLES
It's possible to load multiple features together, using
Expand Down
2 changes: 1 addition & 1 deletion lib/warnings.pm
Expand Up @@ -5,7 +5,7 @@

package warnings;

our $VERSION = "1.51";
our $VERSION = "1.52";

# Verify that we're called correctly so that warnings will work.
# Can't use Carp, since Carp uses us!
Expand Down
11 changes: 10 additions & 1 deletion regen/feature.pl
Expand Up @@ -479,7 +479,7 @@ sub longest {
__END__
package feature;
our $VERSION = '1.63';
our $VERSION = '1.64';
FEATURES
Expand Down Expand Up @@ -825,6 +825,15 @@ =head2 The 'try' feature.
For more information, see L<perlsyn/"Try Catch Exception Handling">.
=head2 The 'trim' feature
C<use feature 'trim'> tells the compiler to enable the C<trim> function, which
removes leading and trailing whitespace from strings.
See L<perlfunc/trim> for details.
This feature is available from Perl 5.34 onwards.
=head1 FEATURE BUNDLES
It's possible to load multiple features together, using
Expand Down
2 changes: 1 addition & 1 deletion regen/warnings.pl
Expand Up @@ -16,7 +16,7 @@
#
# This script is normally invoked from regen.pl.

$VERSION = '1.51';
$VERSION = '1.52';

BEGIN {
require './regen/regen_lib.pl';
Expand Down

0 comments on commit 79eaec4

Please sign in to comment.