Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
version 0.54
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed Aug 16, 2010
1 parent c4e7904 commit 75a5be8
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 21 deletions.
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Revision history for Perl extension Devel::Pragma.

0.53 Sun Feb 22 01:44:51 GMT 2009
0.54 Mon Aug 16 13:54:36 2010
- portability fixes for Visual Studio and older GCCs

0.53 Sun Feb 22 01:44:51 2009
- yet another metadata fix

0.52 Thu Feb 19 19:47:20 2009
Expand Down
18 changes: 10 additions & 8 deletions META.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
--- #YAML:1.0
name: Devel-Pragma
version: 0.53
version: 0.54
abstract: helper functions for developers of lexical pragmas
author:
- chocolateboy <chocolate@cpan.org>
license: perl
distribution_type: module
configure_requires:
B::Hooks::OP::Annotation: 0.32
B::Hooks::OP::Check: 0.15
ExtUtils::Depends: 0.301
B::Hooks::OP::Annotation: 0.43
B::Hooks::OP::Check: 0.18
ExtUtils::Depends: 0.302
ExtUtils::MakeMaker: 0
build_requires:
ExtUtils::MakeMaker: 0
requires:
B::Hooks::EndOfScope: 0.07
B::Hooks::OP::Annotation: 0.32
B::Hooks::OP::Check: 0.15
B::Hooks::EndOfScope: 0.09
B::Hooks::OP::Annotation: 0.43
B::Hooks::OP::Check: 0.18
no_index:
directory:
- t
- inc
generated_by: ExtUtils::MakeMaker version 6.48
generated_by: ExtUtils::MakeMaker version 6.56
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
8 changes: 4 additions & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ if ($Config{gccversion}) {
}

our %XS_PREREQUISITES = (
'B::Hooks::OP::Annotation' => '0.32',
'B::Hooks::OP::Check' => '0.15',
'B::Hooks::OP::Annotation' => '0.43',
'B::Hooks::OP::Check' => '0.18',
);

our %XS_DEPENDENCIES = ExtUtils::Depends->new(
Expand All @@ -32,7 +32,7 @@ WriteMakefile(
NAME => 'Devel::Pragma',
VERSION_FROM => 'lib/Devel/Pragma.pm',
PREREQ_PM => {
'B::Hooks::EndOfScope' => '0.07',
'B::Hooks::EndOfScope' => '0.09',
%XS_PREREQUISITES
},
ABSTRACT_FROM => 'lib/Devel/Pragma.pm',
Expand All @@ -45,7 +45,7 @@ WriteMakefile(
($ExtUtils::MakeMaker::VERSION >= 6.46 ?
(META_MERGE => {
configure_requires => {
'ExtUtils::Depends' => '0.301',
'ExtUtils::Depends' => '0.302',
%XS_PREREQUISITES
}})
: ()
Expand Down
12 changes: 8 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Devel::Pragma version 0.53
Devel::Pragma version 0.54
================================

This module provides helper functions for developers of lexical pragmas. These can be used both in older versions of
perl (from 5.8.0), which have limited support for lexical pragmas, and in the most recent versions, which have improved
perl (from 5.8.1), which have limited support for lexical pragmas, and in the most recent versions, which have improved
support.

INSTALLATION
Expand All @@ -19,11 +19,15 @@ DEPENDENCIES
This module requires these other modules and libraries:

B::Hooks::EndOfScope
B::Hooks::OP::Annotation
B::Hooks::OP::Check
ExtUtils::Depends


COPYRIGHT AND LICENCE

Copyright (C) 2008-2009 by chocolateboy
Copyright (C) 2008-2010 by chocolateboy

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
it under the same terms as Perl itself, either Perl version 5.8.1 or,
at your option, any later version of Perl 5 you may have available.
10 changes: 6 additions & 4 deletions lib/Devel/Pragma.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use 5.008;
use strict;
use warnings;

our $VERSION = '0.53';
our $VERSION = '0.54';

use B::Hooks::EndOfScope;
use B::Hooks::OP::Annotation;
Expand Down Expand Up @@ -401,7 +401,7 @@ before that exception is thrown.
=head1 VERSION
0.53
0.54
=head1 SEE ALSO
Expand All @@ -423,6 +423,8 @@ before that exception is thrown.
=item * L<Devel::Hints|Devel::Hints>
=item * L<Lexical::SealRequireHints|Lexical::SealRequireHints>
=item * http://tinyurl.com/45pwzo
=back
Expand All @@ -433,10 +435,10 @@ chocolateboy <chocolate@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008-2009 by chocolateboy
Copyright (C) 2008-2010 by chocolateboy
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
it under the same terms as Perl itself, either Perl version 5.8.1 or,
at your option, any later version of Perl 5 you may have available.
=cut

0 comments on commit 75a5be8

Please sign in to comment.