Skip to content

Commit

Permalink
cpp-0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 21, 2014
1 parent 90aee57 commit 358943c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Changes
@@ -1,4 +1,11 @@
---
version: 0.0.3
date: Sun Dec 21 00:23:47 EST 2014
changes:
- Build on Inline::Module 0.27
- Adds CppGuess support
- Add dev modules to Makefile.PL
---
version: 0.0.2
date: Thu Dec 18 18:37:24 PST 2014
changes:
Expand Down
20 changes: 18 additions & 2 deletions Makefile.PL
Expand Up @@ -6,13 +6,29 @@ use Inline::Module;

WriteMakefile(
NAME => 'Alt::Acme::Math::XS::CPP',
VERSION => '0.0.2',
VERSION => '0.0.3',
ABSTRACT => 'Math is HARD (faster!)',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008001',
test => { TESTS => 't/*.t' },
META_MERGE => { no_index => { directory => [ 'lib/Acme' ] }, },
META_MERGE => {
'meta-spec' => { version => 2 },
prereqs => {
develop => {
requires => {
'Inline::CPP' => '0.69',
'Inline::Module' => '0.27',
},
},
},
no_index => {
directory => [
'inc',
'lib/Acme',
],
},
},
postamble => {
inline => {
module => 'Acme::Math::XS',
Expand Down
2 changes: 1 addition & 1 deletion lib/Acme/Math/XS.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package Acme::Math::XS;
# our $VERSION = '0.0.2';
# our $VERSION = '0.0.3';

use Exporter 'import';
our @EXPORT = qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/Alt/Acme/Math/XS/CPP.pm
@@ -1,2 +1,2 @@
package Alt::Acme::Math::XS::CPP;
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';

0 comments on commit 358943c

Please sign in to comment.