]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Fri, 8 Aug 2008 22:38:36 +0000 (00:38 +0200)
committerVincent Pit <vince@profvince.com>
Fri, 8 Aug 2008 22:38:36 +0000 (00:38 +0200)
Changes
META.yml
README
lib/Sub/Nary.pm

diff --git a/Changes b/Changes
index 46886ce527295a4501d2b8ab1222964d8563d363..bb89962bd48384bd0b8ccc11013eaa778c57a20d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,21 @@
 Revision history for Sub-Nary
 
+0.03    2008-08-08 22:40 UTC
+        + Add : Support for grep and map.
+        + Add : More function ported to XS.
+        + Chg : Almost complete rewrite that makes the main logic way sanier.
+                Effectively, we now compute the return state and the last list
+                state for each op, recursively. Those two piece of information
+                are always returned by the inspect method.
+        + Chg : Incompatible change : from now, each branch of a test will
+                receive the same probability. This is needed in order to ensure
+                consistency between different syntaxes that gives the same logic
+                (for example, a literal if versus a function call that hides the
+                same if). Consider that each test has 50% of chance to succeed.
+        + Chg : List::Util is no longer required.
+        + Fix : returns in strange places will now usually be nicely handled.
+        + Tst : Even more of them.
+
 0.02    2008-08-05 16:20 UTC
         + Add : Support for matches, eval, keys, values, each readline, stat,
                 localtime, gmtime, caller, get{pw,gr,host,net,proto,serv}*,
index 755e66bdaeebd759741646f2e8d12bb01c41a8fd..caf83992ff2a9daa268e3453af0bd1279ee3e893 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Sub-Nary
-version:             0.02
+version:             0.03
 abstract:            Try to count how many elements a subroutine can return in list context.
 license:             perl
 author:              
diff --git a/README b/README
index 730073293dab1e490e01b9dc43a9038abe257024..98287098967c5503ce4f6fbab02d356b8de5bda2 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NAME
     list context.
 
 VERSION
-    Version 0.02
+    Version 0.03
 
 SYNOPSIS
         use Sub::Nary;
index ee5fb6491ca60410c857f3f0d546b35ba0f9a54d..b87eaefc48736e2256b048e67517b94ce313700b 100644 (file)
@@ -15,13 +15,13 @@ Sub::Nary - Try to count how many elements a subroutine can return in list conte
 
 =head1 VERSION
 
-Version 0.02
+Version 0.03
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION  = '0.02';
+ $VERSION  = '0.03';
 }
 
 =head1 SYNOPSIS