Skip to content

Commit

Permalink
Prepare CPAN version 0.71
Browse files Browse the repository at this point in the history
  • Loading branch information
daoswald committed Jan 16, 2015
1 parent d3c9171 commit 4ec565c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension Inline::CPP.

0.71 2015-01-16
- Get more info out of eval falure.
- Be more idiomatic in checking class of object.

0.70 2014-12-25
- Make t/grammar/00pod_coverage.t author-only.

Expand Down
10 changes: 5 additions & 5 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"David Oswald <davido@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240",
"generated_by" : "ExtUtils::MakeMaker version 7.02, CPAN::Meta::Converter version 2.142690",
"license" : [
"artistic_2"
],
Expand Down Expand Up @@ -50,15 +50,15 @@
"provides" : {
"Inline::CPP" : {
"file" : "lib/Inline/CPP.pm",
"version" : "0.70"
"version" : "0.71"
},
"Inline::CPP::Config" : {
"file" : "lib/Inline/CPP/Config.pm",
"version" : "0.70"
"version" : "0.71"
},
"Inline::CPP::Parser::RecDescent" : {
"file" : "lib/Inline/CPP/Parser/RecDescent.pm",
"version" : "0.70"
"version" : "0.71"
}
},
"release_status" : "stable",
Expand All @@ -73,5 +73,5 @@
"web" : "http://github.com/daoswald/Inline-CPP"
}
},
"version" : "0.70"
"version" : "0.71"
}
10 changes: 5 additions & 5 deletions META.yml
Expand Up @@ -13,7 +13,7 @@ configure_requires:
ExtUtils::MakeMaker: '7.04'
FindBin: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240'
generated_by: 'ExtUtils::MakeMaker version 7.02, CPAN::Meta::Converter version 2.142690'
license: artistic_2
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -27,13 +27,13 @@ no_index:
provides:
Inline::CPP:
file: lib/Inline/CPP.pm
version: '0.70'
version: '0.71'
Inline::CPP::Config:
file: lib/Inline/CPP/Config.pm
version: '0.70'
version: '0.71'
Inline::CPP::Parser::RecDescent:
file: lib/Inline/CPP/Parser/RecDescent.pm
version: '0.70'
version: '0.71'
requires:
Carp: '0'
Inline: '0.78'
Expand All @@ -44,4 +44,4 @@ resources:
homepage: http://github.com/daoswald/Inline-CPP
license: http://dev.perl.org/licenses/artistic.html
repository: http://github.com/daoswald/Inline-CPP.git
version: '0.70'
version: '0.71'
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -14,7 +14,7 @@ use 5.008001;

# The next line is verified via t/13version_numbers.t. Retain single quoting.

my $DIST_VERSION = '0.70'; # DRY in Makefile.PL.
my $DIST_VERSION = '0.71'; # DRY in Makefile.PL.

my $CPP_Config_path = 'lib/Inline/CPP/Config.pm';

Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/CPP.pm
Expand Up @@ -19,7 +19,7 @@ our @ISA = qw( Inline::C ); ## no critic (ISA)
# Development releases will have a _0xx version suffix.
# We eval the version number to accommodate dev. version numbering, as
# described in perldoc perlmodstyle.
our $VERSION = '0.70';
our $VERSION = '0.71';
# $VERSION = eval $VERSION; ## no critic (eval)

my $TYPEMAP_KIND;
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/CPP/Config.pm
Expand Up @@ -5,7 +5,7 @@ package Inline::CPP::Config;
use strict;
use warnings;

our $VERSION = '0.70';
our $VERSION = '0.71';
#$VERSION = eval $VERSION; ## no critic (eval)


Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/CPP/Parser/RecDescent.pm
Expand Up @@ -4,7 +4,7 @@ package Inline::CPP::Parser::RecDescent;
# Dev versions will have a _0xx suffix.
# We eval the $VERSION to accommodate dev version numbering as described in
# perldoc perlmodstyle
our $VERSION = '0.70';
our $VERSION = '0.71';
#$VERSION = eval $VERSION; ## no critic (eval)

use Carp;
Expand Down

0 comments on commit 4ec565c

Please sign in to comment.