From: Steffen Mueller Date: Wed, 10 Jun 2009 10:25:48 +0000 (+0200) Subject: Upgrade Attribute::Handlers to 0.84 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=12c541f435c0fde6414e8942d051e05098e0253e;p=p5sagit%2Fp5-mst-13.2.git Upgrade Attribute::Handlers to 0.84 --- diff --git a/ext/Attribute-Handlers/Changes b/ext/Attribute-Handlers/Changes index 394ef52..f1747e8 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 a1d9ce3..539de1f 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 079b2cc..d012b9f 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 7a269e8..23c8334 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 387ab44..46ed594 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 aba1138..ea6b326 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';