Skip to content

Commit

Permalink
eumm-0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 21, 2014
1 parent 819669d commit 0597ab7
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.0.12
date: Sun Dec 21 00:36:05 EST 2014
changes:
- Add dev prereqs to Makefile.PL
---
version: 0.0.11
date: Thu Dec 18 18:59:44 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::EUMM',
VERSION => '0.0.11',
VERSION => '0.0.12',
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.11';
# our $VERSION = '0.0.12';

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

0 comments on commit 0597ab7

Please sign in to comment.