Skip to content

Commit

Permalink
CPAN Release 0.78
Browse files Browse the repository at this point in the history
- Move working code of Inline::import to Inline::import_heavy to support Inline::Module
  • Loading branch information
ingydotnet committed Dec 2, 2014
1 parent b85fa34 commit 9b85dcb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions About
Expand Up @@ -57,6 +57,7 @@ Repository Layout

This repoository contains the following top level files and directories:

About - This file describing the repository. (generated)
Changes - Change log file in YAML.
Meta - All metadata for the project.
ReadMe.pod - Top level ReadMe file for GitHub. (generated)
Expand Down
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.78
date: Tue Dec 2 15:21:30 EST 2014
changes:
- Move working code of Inline::import to Inline::import_heavy to support Inline::Module
---
version: 0.77
date: Fri Sep 19 23:13:20 UTC 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: Inline
version: 0.77
version: 0.78
abstract: Write Perl subroutines in other programming languages
homepage: https://metacpan.org/release/Inline
language: perl
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline.pm
@@ -1,7 +1,7 @@
use strict; use warnings;
package Inline;

our $VERSION = '0.77';
our $VERSION = '0.78';

use Inline::denter;
use Config;
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/Foo.pm
Expand Up @@ -3,7 +3,7 @@ package Inline::Foo;

require Inline;
our @ISA = qw(Inline);
our $VERSION = '0.77';
our $VERSION = '0.78';

use Carp;
use File::Spec;
Expand Down
2 changes: 1 addition & 1 deletion lib/Inline/MakeMaker.pm
Expand Up @@ -6,7 +6,7 @@ use ExtUtils::MakeMaker();
use Carp;

our @EXPORT = qw(WriteMakefile WriteInlineMakefile);
our $VERSION = '0.77';
our $VERSION = '0.78';

sub WriteInlineMakefile {
carp <<EOF;
Expand Down

0 comments on commit 9b85dcb

Please sign in to comment.