From: Lukas Mai Date: Sun, 15 Sep 2013 23:15:08 +0000 (+0200) Subject: version 1.0301 X-Git-Tag: v1.0301 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=c1240985f4d17eac65a0219780ca0a46b97a1c02 version 1.0301 --- diff --git a/Changes b/Changes index 05ef48b..0b0957d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Function-Parameters +1.0301 2013-09-16 + - support 'defaults' to base keywords on existing keyword types + - 'check_argument_count' no longer controls type checks + - new 'check_argument_types' property controls type checks + - new 'strict' property does what 'check_argument_count' used to + - new 'runtime' property lets you define functions at runtime + - some more tests + 1.0202 2013-08-28 - make t/foreign/Fun/name.t less fragile to support newer Carp - support older Moo without ->meta support diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index a39f93b..0ceaeb7 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.0202'; + our $VERSION = '1.0301'; XSLoader::load; } diff --git a/lib/Function/Parameters/Info.pm b/lib/Function/Parameters/Info.pm index 224269c..7e14b12 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 = '1.0202'; +our $VERSION = '1.0301'; # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose my ($Moo, $meta_make_immutable);