summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Granum <exodist7@gmail.com>2016-01-26 15:55:41 -0800
committerChad Granum <exodist7@gmail.com>2016-01-26 15:55:41 -0800
commitbbd370fbb8f01258c3225f37d4a0db29860e48c0 (patch)
treeee2f17bbb76c00d6f57285535586956b350b1a2f
parent10d804059c20336941252f2a169b5e5a16dbb87d (diff)
Version Bump
-rw-r--r--Changes2
-rw-r--r--lib/Importer.pm3
2 files changed, 4 insertions, 1 deletions
diff --git a/Changes b/Changes
index 2a4fc1f..18ac4b1 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
{{$NEXT}}
+ - no changes from last trial
+
0.010 2016-01-25 14:21:40-08:00 America/Los_Angeles (TRIAL RELEASE)
- Remove experimental warning
diff --git a/lib/Importer.pm b/lib/Importer.pm
index 2d4026d..c0695b8 100644
--- a/lib/Importer.pm
+++ b/lib/Importer.pm
@@ -2,7 +2,7 @@ package Importer;
use strict qw/vars subs/; # Not refs!
use warnings; no warnings 'once';
-our $VERSION = '0.010';
+our $VERSION = '0.011';
my %SIG_TO_SLOT = (
'&' => 'CODE',
@@ -969,6 +969,7 @@ not include sigil for subs).
our %EXPORT_GEN = (
'&foo' => sub {
+ my $from_package = shift;
my ($into_package, $symbol_name) = @_;
...
return sub { ... };