[Checkins] SVN: appendonly/trunk/ Fix brown-bag in 1.0 release.

Tres Seaver cvs-admin at zope.org
Mon Feb 25 23:52:49 UTC 2013


Log message for revision 129814:
  Fix brown-bag in 1.0 release.
  
  'Accumulator.append' changes were not persisted.
  

Changed:
  U   appendonly/trunk/CHANGES.txt
  U   appendonly/trunk/appendonly/__init__.py
  U   appendonly/trunk/setup.py

-=-
Modified: appendonly/trunk/CHANGES.txt
===================================================================
--- appendonly/trunk/CHANGES.txt	2013-02-25 23:08:20 UTC (rev 129813)
+++ appendonly/trunk/CHANGES.txt	2013-02-25 23:52:48 UTC (rev 129814)
@@ -1,6 +1,12 @@
 ``appendonly`` Changelog
 ========================
 
+1.0.1 (2013-02-25)
+------------------
+
+- Fix brown-bag in 1.0 release ('Accumulator.append' changes were not
+  persisted).
+
 1.0 (2013-02-25)
 ----------------
 

Modified: appendonly/trunk/appendonly/__init__.py
===================================================================
--- appendonly/trunk/appendonly/__init__.py	2013-02-25 23:08:20 UTC (rev 129813)
+++ appendonly/trunk/appendonly/__init__.py	2013-02-25 23:52:48 UTC (rev 129814)
@@ -254,6 +254,7 @@
 
     def append(self, v):
         self._list.append(v)
+        self._p_changed = 1
 
     def consume(self):
         result, self._list = self._list[:], []

Modified: appendonly/trunk/setup.py
===================================================================
--- appendonly/trunk/setup.py	2013-02-25 23:08:20 UTC (rev 129813)
+++ appendonly/trunk/setup.py	2013-02-25 23:52:48 UTC (rev 129814)
@@ -20,7 +20,7 @@
 CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
 
 setup(name='appendonly',
-      version='1.0',
+      version='1.0.1',
       description='Persistent append-only data structures.',
       long_description=README + '\n\n' +  CHANGES,
       classifiers=[



More information about the checkins mailing list