[Checkins] SVN: zc.dict/trunk/ updated CHANGES (not using up-to-date style) and pushed version to 1.2 in preparation for release.

Gary Poster gary at zope.com
Wed Mar 5 17:27:02 EST 2008


Log message for revision 84484:
  updated CHANGES (not using up-to-date style) and pushed version to 1.2 in preparation for release.

Changed:
  U   zc.dict/trunk/CHANGES.txt
  U   zc.dict/trunk/setup.py

-=-
Modified: zc.dict/trunk/CHANGES.txt
===================================================================
--- zc.dict/trunk/CHANGES.txt	2008-03-05 22:17:47 UTC (rev 84483)
+++ zc.dict/trunk/CHANGES.txt	2008-03-05 22:27:02 UTC (rev 84484)
@@ -1,7 +1,24 @@
-1.2 (unreleased)
+1.2 (2007-3-5)
 -----------------
 
+* bug fix: ``pop`` and ``setdefault`` did not correctly adjust _len
 
+* bug fix: ``setdefault`` did not return value
+
+* feature: ``update`` now supports full dict behavior
+
+* feature: ordered dict now has all dict methods
+
+* tests: added fuller test suite for ordered dict
+
+* docs: mentioned some performance and behavior characteristics of Dict and
+  OrderedDict
+
+* change: moved OrderedDict into dict.py and made it a subclass.  Left a stub
+  for old ZODBs in ordered.py.
+
+* change: ``__del__`` defers to ``pop``.
+
 1.1 (2007-12-16)
 ----------------
 

Modified: zc.dict/trunk/setup.py
===================================================================
--- zc.dict/trunk/setup.py	2008-03-05 22:17:47 UTC (rev 84483)
+++ zc.dict/trunk/setup.py	2008-03-05 22:27:02 UTC (rev 84484)
@@ -5,7 +5,7 @@
                     open("src/zc/dict/ordered.txt").read())
 setup(
     name="zc.dict",
-    version="1.1",
+    version="1.2",
     license="ZPL 2.1",
     author="Zope Corporation",
     author_email="zope3-dev at zope.org",



More information about the Checkins mailing list