Skip to content

Commit

Permalink
CPAN Release 0.23
Browse files Browse the repository at this point in the history
- Add Inline::C and Inline::CPP::Config for Inline::CPP-based modules
  • Loading branch information
ingydotnet committed Dec 17, 2014
1 parent 5578aa5 commit 1d55fa1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.23
date: Tue Dec 16 23:58:49 EST 2014
changes:
- Add Inline::C and Inline::CPP::Config for Inline::CPP-based modules
---
version: 0.22
date: Tue Dec 16 23:32:17 EST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: Inline-Module
version: 0.22
version: 0.23
abstract: Support for Inline-based CPAN Extension Modules
homepage: https://metacpan.org/release/Inline-Module

Expand Down
4 changes: 3 additions & 1 deletion lib/Inline/Module.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package Inline::Module;
our $VERSION = '0.22';
our $VERSION = '0.23';

use Config();
use File::Path();
Expand Down Expand Up @@ -169,6 +169,8 @@ sub included_modules {
}
if (grep /:CPP$/, @$ilsm) {
push @include,
'Inline::C',
'Inline::CPP::Config',
'Inline::CPP::Parser::RecDescent',
'Parse::RecDescent';
}
Expand Down

0 comments on commit 1d55fa1

Please sign in to comment.