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

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed Jun 28, 2016
1 parent 4f8b114 commit 41123ca
Show file tree
Hide file tree
Showing 7 changed files with 284 additions and 127 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension Devel::Pragma.

1.0.0 Tue 28 Jun 09:15:13 2016
- remove on_require

0.62 Mon 26 Oct 12:13:17 2015
- update ppport.h
- update copyright year
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ Makefile.PL
MANIFEST This list of files
META.yml
ppport.h
Pragma.bs
Pragma.c
Pragma.o
Pragma.xs
README
t/ccstash.t
Expand Down
16 changes: 6 additions & 10 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ author:
build_requires:
ExtUtils::MakeMaker: '0'
configure_requires:
B::Hooks::OP::Annotation: '0.44'
B::Hooks::OP::Check: '0.19'
ExtUtils::Depends: '0.302'
ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005'
dynamic_config: 0
generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -20,12 +17,11 @@ no_index:
directory:
- t
- inc
- xt
requires:
B::Hooks::OP::Annotation: '0.44'
B::Hooks::OP::Check: '0.19'
Lexical::SealRequireHints: '0.007'
Lexical::SealRequireHints: '0.010'
perl: '5.008001'
resources:
repository: http://github.com/chocolateboy/Devel-Pragma
version: '0.62'
x_serialization_backend: 'CPAN::Meta::YAML version 0.012'
version: v1.0.0
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
3 changes: 2 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ WriteMakefile(
NAME => 'Devel::Pragma',
VERSION_FROM => 'lib/Devel/Pragma.pm',
PREREQ_PM => {
'Lexical::SealRequireHints' => '0.007',
'Lexical::SealRequireHints' => '0.010',
},
ABSTRACT_FROM => 'lib/Devel/Pragma.pm',
AUTHOR => 'chocolateboy <chocolate@cpan.org>',
Expand All @@ -36,6 +36,7 @@ WriteMakefile(
(META_MERGE => {
resources => {
repository => 'http://github.com/chocolateboy/Devel-Pragma',
bugtracker => 'http://github.com/chocolateboy/Devel-Pragma/issues',
},
})
: ()
Expand Down
14 changes: 7 additions & 7 deletions README
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Devel::Pragma version 0.62
Devel::Pragma version 1.0.0
================================

This module provides helper functions for developers of lexical pragmas.
These can be used both in older versions of perl (from 5.8.1), which
have limited support for lexical pragmas, and in the most recent
versions, which have improved support.
This module provides helper functions for developers of lexical pragmas, though a few functions may
be useful to non-pragma developers as well.

Pragmas can be used both in older versions of perl (from 5.8.1), which had limited support, and in
the most recent versions, which have improved support.

INSTALLATION

Expand All @@ -19,12 +20,11 @@ DEPENDENCIES

This module requires these other modules and libraries:

ExtUtils::Depends
Lexical::SealRequireHints

COPYRIGHT AND LICENCE

Copyright (C) 2008-2015 by chocolateboy
Copyright (C) 2008-2016 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.1 or,
Expand Down
6 changes: 3 additions & 3 deletions lib/Devel/Pragma.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use XSLoader;

use base qw(Exporter);

our $VERSION = '0.62';
our $VERSION = '1.0.0';
our @EXPORT_OK = qw(my_hints hints new_scope ccstash scope fqname);
our %EXPORT_TAGS = (all => [ @EXPORT_OK ]);

Expand Down Expand Up @@ -305,7 +305,7 @@ prints:
=head1 VERSION
0.62
1.0.0
=head1 SEE ALSO
Expand Down Expand Up @@ -339,7 +339,7 @@ chocolateboy <chocolate@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008-2015 by chocolateboy
Copyright (C) 2008-2016 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.1 or,
Expand Down
Loading

0 comments on commit 41123ca

Please sign in to comment.