Skip to content

Commit

Permalink
"Changes" now CPAN::Changes::Spec compliant.
Browse files Browse the repository at this point in the history
  • Loading branch information
daoswald committed Nov 3, 2012
1 parent 573ca82 commit 80045e9
Show file tree
Hide file tree
Showing 11 changed files with 367 additions and 335 deletions.
2 changes: 1 addition & 1 deletion 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.41';
our $VERSION = '0.42';
#$VERSION = eval $VERSION; ## no critic (eval)

our $LOGFILE = q{c:/Users/daoswald/programming/repos/Inline-CPP/ilcpp.log};
Expand Down
639 changes: 322 additions & 317 deletions Changes

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -41,6 +41,7 @@ t/10kwalitee.t
t/11rewrite_config.t
t/12custom_libs.t
t/13version_numbers.t
t/14changes.t
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)

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 6.6302, CPAN::Meta::Converter version 2.120921",
"generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120630",
"license" : [
"artistic_1"
],
Expand Down Expand Up @@ -36,8 +36,8 @@
"runtime" : {
"requires" : {
"Carp" : "0",
"Inline" : "0.50",
"Inline::C" : "0.50",
"Inline" : "0.51",
"Inline::C" : "0.51",
"Parse::RecDescent" : "0",
"perl" : "5.006001"
}
Expand All @@ -46,9 +46,9 @@
"provides" : {
"Inline::CPP" : {
"file" : "CPP.pm",
"version" : "0.41"
"version" : "0.42"
}
},
"release_status" : "stable",
"version" : "0.41"
"version" : "0.42"
}
10 changes: 5 additions & 5 deletions META.yml
Expand Up @@ -10,7 +10,7 @@ configure_requires:
Config: 0
ExtUtils::MakeMaker: 6.56
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921'
generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120630'
license: artistic
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -23,11 +23,11 @@ no_index:
provides:
Inline::CPP:
file: CPP.pm
version: 0.41
version: 0.42
requires:
Carp: 0
Inline: 0.50
Inline::C: 0.50
Inline: 0.51
Inline::C: 0.51
Parse::RecDescent: 0
perl: 5.006001
version: 0.41
version: 0.42
6 changes: 3 additions & 3 deletions Makefile.PL
Expand Up @@ -14,8 +14,8 @@ use strict;
my $CPP_Config_path = 'lib/Inline/CPP/Config.pm';

my %PREREQ_PM = (
'Inline' => '0.50',
'Inline::C' => '0.50',
'Inline' => '0.51',
'Inline::C' => '0.51',
'Parse::RecDescent' => '0',
'Carp' => '0',
);
Expand Down Expand Up @@ -209,7 +209,7 @@ WriteMakefile(
provides => {
'Inline::CPP' => {
file => 'CPP.pm',
version => '0.41'
version => '0.42'
},
},
},
Expand Down
11 changes: 9 additions & 2 deletions README
Expand Up @@ -33,7 +33,7 @@ When run, this complete program prints:
-----------------------------------------------------------------------------
FEATURES:

Inline::CPP version 0.41 is a Stable Release. See the 'Changes' file
Inline::CPP version 0.42 is a Stable Release. See the 'Changes' file
for details.

-----------------------------------------------------------------------------
Expand All @@ -46,7 +46,14 @@ end installed (it isn't installed by default on some Linux distros, for
example). If you cannot execute 'g++ -v' from the command prompt, or some
variation for your specific C++ compiler,

This module requires Inline::C.pm version 0.50 or higher to be installed.
*** DISABLE HARNESS_OPTIONS=j9 ***

If you have the HARNESS_OPTIONS environment variable set to run tests
concurrently in multiple processes, the test suite will attempt to invoke
the C++ compiler multiple times concurrently. This option isn't compatible
with most C++ compilers. Don't forget to unset your HARNESS_OPTIONS.

This module requires Inline::C.pm version 0.51 or higher to be installed.
It also uses Parse::RecDescent.

To install Inline::CPP do this:
Expand Down
2 changes: 1 addition & 1 deletion grammar/grammar.pm
Expand Up @@ -8,7 +8,7 @@ use vars qw($TYPEMAP_KIND $class_part $class_decl $star);
# Dev versions will have a _0xx suffix.
# We eval the $VERSION to accommodate dev version numbering as described in
# perldoc perlmodstyle
our $VERSION = '0.41';
our $VERSION = '0.42';
#$VERSION = eval $VERSION; ## no critic (eval)

# Parse::RecDescent 1.90 and later have an incompatible change
Expand Down
2 changes: 2 additions & 0 deletions lib/Inline/CPP.pod
@@ -1,3 +1,5 @@
=encoding utf8

=head1 NAME

Inline::CPP - Write Perl subroutines and classes in C++.
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.41';
our $VERSION = '0.42';
#$VERSION = eval $VERSION; ## no critic (eval)


Expand Down
17 changes: 17 additions & 0 deletions t/14changes.t
@@ -0,0 +1,17 @@
#!/usr/bin/env perl
use strict;
use warnings;

use Test::More;

plan skip_all => 'Author tests skipped. Set $ENV{RELEASE_TESTING} to run'
unless $ENV{RELEASE_TESTING};


plan skip_all => 'Test::CPAN::Changes required for this test'
unless eval 'use Test::CPAN::Changes; 1;'; ## no critic (eval)


changes_ok();

done_testing();

0 comments on commit 80045e9

Please sign in to comment.