summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-05-05 14:28:42 +0000
committerNicholas Clark <nick@ccl4.org>2005-05-05 14:28:42 +0000
commitb4ec42b69d9617082490f2c4d5d6882716a48762 (patch)
treeb247c766f965cb0d82c20845ea554509cb46357b /ext
parent8af3c3489f0c9ca8d37ebae27991ac4f34dfdb2f (diff)
downloadperl-b4ec42b69d9617082490f2c4d5d6882716a48762.tar.gz
Bump B version numbers
p4raw-id: //depot/perl@24396
Diffstat (limited to 'ext')
-rw-r--r--ext/B/B.pm2
-rw-r--r--ext/B/B/Concise.pm2
-rw-r--r--ext/B/B/Deparse.pm2
-rw-r--r--ext/B/B/Disassembler.pm2
-rw-r--r--ext/B/B/Terse.pm2
-rw-r--r--ext/B/t/OptreeCheck.pm3
6 files changed, 7 insertions, 6 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm
index 95b2f04ab1..fa3c218f5b 100644
--- a/ext/B/B.pm
+++ b/ext/B/B.pm
@@ -7,7 +7,7 @@
#
package B;
-our $VERSION = '1.08';
+our $VERSION = '1.09';
use XSLoader ();
require Exporter;
diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm
index e13b24921e..0c4a010e64 100644
--- a/ext/B/B/Concise.pm
+++ b/ext/B/B/Concise.pm
@@ -14,7 +14,7 @@ use warnings; # uses #3 and #4, since warnings uses Carp
use Exporter (); # use #5
-our $VERSION = "0.64";
+our $VERSION = "0.65";
our @ISA = qw(Exporter);
our @EXPORT_OK = qw( set_style set_style_standard add_callback
concise_subref concise_cv concise_main
diff --git a/ext/B/B/Deparse.pm b/ext/B/B/Deparse.pm
index cc575e33d0..8e3e42e270 100644
--- a/ext/B/B/Deparse.pm
+++ b/ext/B/B/Deparse.pm
@@ -19,7 +19,7 @@ use B qw(class main_root main_start main_cv svref_2object opnumber perlstring
CVf_METHOD CVf_LOCKED CVf_LVALUE CVf_ASSERTION
PMf_KEEP PMf_GLOBAL PMf_CONTINUE PMf_EVAL PMf_ONCE PMf_SKIPWHITE
PMf_MULTILINE PMf_SINGLELINE PMf_FOLD PMf_EXTENDED);
-$VERSION = 0.69;
+$VERSION = 0.70;
use strict;
use vars qw/$AUTOLOAD/;
use warnings ();
diff --git a/ext/B/B/Disassembler.pm b/ext/B/B/Disassembler.pm
index 624acb3400..c64b9734c1 100644
--- a/ext/B/B/Disassembler.pm
+++ b/ext/B/B/Disassembler.pm
@@ -5,7 +5,7 @@
# You may distribute under the terms of either the GNU General Public
# License or the Artistic License, as specified in the README file.
-$B::Disassembler::VERSION = '1.03';
+$B::Disassembler::VERSION = '1.04';
package B::Disassembler::BytecodeStream;
diff --git a/ext/B/B/Terse.pm b/ext/B/B/Terse.pm
index 9cf3bf7c75..cb2f63b463 100644
--- a/ext/B/B/Terse.pm
+++ b/ext/B/B/Terse.pm
@@ -1,6 +1,6 @@
package B::Terse;
-our $VERSION = '1.02';
+our $VERSION = '1.03';
use strict;
use B qw(class);
diff --git a/ext/B/t/OptreeCheck.pm b/ext/B/t/OptreeCheck.pm
index fed8bb2a47..c6a58e5ea1 100644
--- a/ext/B/t/OptreeCheck.pm
+++ b/ext/B/t/OptreeCheck.pm
@@ -1,8 +1,9 @@
-
package OptreeCheck;
use base 'Exporter';
require "test.pl";
+our $VERSION = '0.01';
+
# now export checkOptree, and those test.pl functions used by tests
our @EXPORT = qw( checkOptree plan skip skip_all pass is like unlike
require_ok runperl );