]> git.vpit.fr Git - perl/modules/autovivification.git/blobdiff - Changes
s/specific/kv/ in the array test generator
[perl/modules/autovivification.git] / Changes
diff --git a/Changes b/Changes
index dfd6379f858ee827037b73d06a9021af168c2cbb..dd93f87717bf452b320c6589a7b82149fec28f35 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,25 @@
 Revision history for autovivification
 
+0.03    2009-06-23 22:20 UTC
+        + Add : Handle old-fashion dereferencing (like $$hashref{key}).
+        + Chg : Aliasing constructs (for ($x{foo}) { ... }) are now covered by
+                the 'store' category (and no longer the 'fetch' one). This is
+                because there's no way to know at compile-time if the alias
+                will be assigned to.
+        + Fix : Quadratic complexity at compile-time.
+        + Fix : Segfaults when dereferencing globals.
+        + Fix : Segfaults on big-endian systems.
+        + Tst : Really test plain arrays and hashes.
+        + Tst : Improved coverage.
+
+0.02    2009-06-17 18:05 UTC
+        + Add : 'fetch' also applies to aliasing ("for ($hashref->{key}) { }").
+        + Fix : Don't segfault on "keys/values %$hashref", and don't vivify if
+                'fetch' is set.
+        + Fix : Plain dereferencing shouldn't have a different behaviour when
+                the pragma is in use.
+        + Tst : Improved coverage.
+
 0.01    2009-06-14 20:10 UTC
         First version, released on an unsuspecting world.