From: Lukas Mai Date: Wed, 28 Aug 2013 18:29:30 +0000 (+0200) Subject: version 1.0202 X-Git-Tag: v1.0202 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ff265988561375d3cf480004e29e3891094c0afb;p=p5sagit%2FFunction-Parameters.git version 1.0202 --- diff --git a/Changes b/Changes index 56ffb5e..05ef48b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Function-Parameters +1.0202 2013-08-28 + - make t/foreign/Fun/name.t less fragile to support newer Carp + - support older Moo without ->meta support + 1.0201 2013-08-13 - custom (per-keyword) type reification - actually use documented defaults for custom keywords diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index 0f89fc2..51679df 100644 --- a/lib/Function/Parameters.pm +++ b/lib/Function/Parameters.pm @@ -7,7 +7,7 @@ use Carp qw(confess); use XSLoader; BEGIN { - our $VERSION = '1.0201'; + our $VERSION = '1.0202'; XSLoader::load; } diff --git a/lib/Function/Parameters/Info.pm b/lib/Function/Parameters/Info.pm index 6c624ff..224269c 100644 --- a/lib/Function/Parameters/Info.pm +++ b/lib/Function/Parameters/Info.pm @@ -3,7 +3,7 @@ package Function::Parameters::Info; use v5.14.0; use warnings; -our $VERSION = '0.04'; +our $VERSION = '1.0202'; # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose my ($Moo, $meta_make_immutable);