diff options
author | Steve Peters <steve@fisharerojo.org> | 2009-06-10 08:32:55 -0500 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2009-06-10 08:32:55 -0500 |
commit | 454dbe40843112257eaf162094b08e258367e968 (patch) | |
tree | 8c4f24c5b9f26caf8afefb726b6b8824f2ecf67f | |
parent | 26e8050aaf2eeca2f04cdc7bc5df07f8dc4ff0f9 (diff) | |
parent | 12c541f435c0fde6414e8942d051e05098e0253e (diff) | |
download | perl-454dbe40843112257eaf162094b08e258367e968.tar.gz |
Merge branch 'blead' of ssh://stevep@perl5.git.perl.org/gitroot/perl into blead
-rw-r--r-- | ext/Attribute-Handlers/Changes | 4 | ||||
-rw-r--r-- | ext/Attribute-Handlers/README | 2 | ||||
-rw-r--r-- | ext/Attribute-Handlers/demo/MyClass.pm | 2 | ||||
-rwxr-xr-x | ext/Attribute-Handlers/demo/demo.pl | 2 | ||||
-rwxr-xr-x | ext/Attribute-Handlers/demo/demo2.pl | 2 | ||||
-rw-r--r-- | ext/Attribute-Handlers/lib/Attribute/Handlers.pm | 8 |
6 files changed, 11 insertions, 9 deletions
diff --git a/ext/Attribute-Handlers/Changes b/ext/Attribute-Handlers/Changes index 394ef5253e..f1747e80fc 100644 --- a/ext/Attribute-Handlers/Changes +++ b/ext/Attribute-Handlers/Changes @@ -1,4 +1,4 @@ -Revision history for Perl extension Attribute::Handlers +Revision history for Perl extension Attribute-Handlers 0.50 Sat Apr 21 16:09:31 2001 - original version; @@ -122,3 +122,5 @@ Revision history for Perl extension Attribute::Handlers 0.83 Fri Mar 13 15:14:00 CET 2009 - Re-add a TODO marker in the tests that would fail on 5.6.2. +0.84 Wed Jun 10 15:14:00 CET 2009 + - Core-CPAN synchronization diff --git a/ext/Attribute-Handlers/README b/ext/Attribute-Handlers/README index a1d9ce333e..539de1fca5 100644 --- a/ext/Attribute-Handlers/README +++ b/ext/Attribute-Handlers/README @@ -12,7 +12,7 @@ VERSION SYNOPSIS package MyClass; - require v5.6.0; + require 5.006; use Attribute::Handlers; no warnings 'redefine'; diff --git a/ext/Attribute-Handlers/demo/MyClass.pm b/ext/Attribute-Handlers/demo/MyClass.pm index 079b2cc3ad..d012b9f1c4 100644 --- a/ext/Attribute-Handlers/demo/MyClass.pm +++ b/ext/Attribute-Handlers/demo/MyClass.pm @@ -1,6 +1,6 @@ package MyClass; $VERSION = '1.00'; -use v5.6.0; +use 5.006; use base Attribute::Handlers; no warnings 'redefine'; diff --git a/ext/Attribute-Handlers/demo/demo.pl b/ext/Attribute-Handlers/demo/demo.pl index 7a269e81b5..23c8334c0b 100755 --- a/ext/Attribute-Handlers/demo/demo.pl +++ b/ext/Attribute-Handlers/demo/demo.pl @@ -1,6 +1,6 @@ #! /usr/local/bin/perl -w -use v5.6.0; +use 5.006; use base Demo; my $y : Demo :This($this) = sub : Demo(1,2,3) {}; diff --git a/ext/Attribute-Handlers/demo/demo2.pl b/ext/Attribute-Handlers/demo/demo2.pl index 387ab4407d..46ed594225 100755 --- a/ext/Attribute-Handlers/demo/demo2.pl +++ b/ext/Attribute-Handlers/demo/demo2.pl @@ -1,6 +1,6 @@ #! /usr/local/bin/perl -w -use v5.6.0; +use 5.006; use base Demo; no warnings 'redefine'; diff --git a/ext/Attribute-Handlers/lib/Attribute/Handlers.pm b/ext/Attribute-Handlers/lib/Attribute/Handlers.pm index aba1138022..ea6b326b65 100644 --- a/ext/Attribute-Handlers/lib/Attribute/Handlers.pm +++ b/ext/Attribute-Handlers/lib/Attribute/Handlers.pm @@ -4,7 +4,7 @@ use Carp; use warnings; use strict; use vars qw($VERSION $AUTOLOAD); -$VERSION = '0.83'; +$VERSION = '0.84'; # remember to update version in POD! # $DB::single=1; my %symcache; @@ -234,13 +234,13 @@ Attribute::Handlers - Simpler definition of attribute handlers =head1 VERSION -This document describes version 0.79 of Attribute::Handlers, -released November 25, 2007. +This document describes version 0.84 of Attribute::Handlers, +released June 10, 2009. =head1 SYNOPSIS package MyClass; - require v5.6.0; + require 5.006; use Attribute::Handlers; no warnings 'redefine'; |