Skip to content

Commit

Permalink
xs-0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 18, 2014
1 parent 7e194f6 commit 510e8bb
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 15 deletions.
10 changes: 10 additions & 0 deletions Changes
@@ -1,4 +1,14 @@
---
version: 0.0.8
date: Wed Dec 17 16:54:58 PST 2014
changes:
- Doc updates
---
version: 0.0.7
date: Wed Dec 16 16:54:35 PST 2014
changes:
- Release
---
version: 0.0.6
date: Thu Oct 30 20:31:20 UTC 2014
changes:
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Expand Up @@ -3,7 +3,7 @@ use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Acme::Math::XS',
VERSION => '0.0.7',
ABSTRACT => 'Math is HARD (faster)',
VERSION => '0.0.8',
ABSTRACT => 'Math is HARD (faster!)',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
);
41 changes: 29 additions & 12 deletions README
@@ -1,31 +1,48 @@
NAME
Acme::Math::XS - Math is HARD (faster)
Acme::Math::XS - Math is HARD (faster!)

SYNOPSIS
use Acme::Math::XS;

print "2 + 2 = ${\add(2, 2)}\n";

DESCRIPTION
This is a tiny example XS module. It was written to show how one would
write the same thing using Inline::Module, Inline::C and Inline.
This is a tiny example "XS" module. It was written to show how one would
write the same thing using Inline::Module, Inline, Inline::C and
Inline::CPP.

See these other example modules:
It has a pure "XS" version and "Alt"(ternate) modules for all the common
CPAN module frameworks.

* Alt::Acme::Math::XS::EUMM
The source code for all these modules is in one git repository, on
separate branches: <https://github.com/ingydotnet/acme-math-xs-pm>

* Alt::Acme::Math::XS::DistZilla
SEE
Acme::Math::XS
Pure XS version, shipped with ExtUtils::MakeMaker.

* Alt::Acme::Math::XS::ZillaDist
Alt::Acme::Math::XS::EUMM
Inline::Module (using Inline::C) version shipped with plain old
ExtUtils::MakeMaker.

* Alt::Acme::Math::XS::ModuleBuild
Alt::Acme::Math::XS::DistZilla
Inline::Module version shipped with Dist::Zilla and
Dist::Zilla::Plugin::InlineModule.

* Alt::Acme::Math::XS::ModuleInstall
Alt::Acme::Math::XS::ZillaDist
Inline::Module version shipped with Zilla::Dist.

* Alt::Acme::Math::XS::CPP
Alt::Acme::Math::XS::ModuleBuild
Inline::Module version shipped with Module::Build and
Module::Build::InlineModule.

The source code for all these modules is in one git repository, on
separate branches: <https://github.com/ingydotnet/acme-math-xs-pm>
Alt::Acme::Math::XS::ModuleInstall
Inline::Module version shipped with Module::Build and
Module::Build::InlineModule.

Alt::Acme::Math::XS::CPP
Inline::Module (using Inline::CPP) version shipped with
ExtUtils::MakeMaker.

AUTHORS
* Ingy döt Net <ingy@cpan.org>
Expand Down
2 changes: 1 addition & 1 deletion lib/Acme/Math/XS.pm
@@ -1,7 +1,7 @@
use strict; use warnings;

package Acme::Math::XS;
our $VERSION = '0.0.7';
our $VERSION = '0.0.8';

use Exporter 'import';
our @EXPORT = qw(add subtract);
Expand Down

0 comments on commit 510e8bb

Please sign in to comment.