summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2009-06-10 12:25:48 +0200
committerDavid Mitchell <davem@iabyn.com>2009-06-12 15:42:34 +0100
commit6f195274f37ee92d243d3faf7315ce45e9343c1d (patch)
tree7c4e78cf39cb48de2b8ec80e0c0bc853b62a4fb4 /ext
parent2068b09afa6a598c2055af462cf7ebb3172ac2ef (diff)
downloadperl-6f195274f37ee92d243d3faf7315ce45e9343c1d.tar.gz
Upgrade Attribute::Handlers to 0.84
(cherry picked from commit 12c541f435c0fde6414e8942d051e05098e0253e)
Diffstat (limited to 'ext')
-rw-r--r--ext/Attribute-Handlers/Changes4
-rw-r--r--ext/Attribute-Handlers/README2
-rw-r--r--ext/Attribute-Handlers/demo/MyClass.pm2
-rwxr-xr-xext/Attribute-Handlers/demo/demo.pl2
-rwxr-xr-xext/Attribute-Handlers/demo/demo2.pl2
-rw-r--r--ext/Attribute-Handlers/lib/Attribute/Handlers.pm8
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';