[Zodb-checkins] CVS: ZODB/src/ZODB - __init__.py:1.29
Tim Peters
tim.one at comcast.net
Mon Apr 19 17:26:31 EDT 2004
Update of /cvs-repository/ZODB/src/ZODB
In directory cvs.zope.org:/tmp/cvs-serv11335/src/ZODB
Modified Files:
__init__.py
Log Message:
ZODB/__init__.py had the wrong kind of string quotes, so that release.py
didn't recognize its version number. As a result, 3.3a3 went out with
ZODB/__init__.py claiming it was version 3.3a2. Repaired that, but by
changing what release.py looks for.
=== ZODB/src/ZODB/__init__.py 1.28 => 1.29 ===
--- ZODB/src/ZODB/__init__.py:1.28 Mon Apr 5 14:48:16 2004
+++ ZODB/src/ZODB/__init__.py Mon Apr 19 17:26:30 2004
@@ -12,7 +12,8 @@
#
##############################################################################
-__version__ = "3.3a2"
+# The next line must use double quotes, so replace.py recognizes it.
+__version__ = "3.3a3"
import sys
import __builtin__
More information about the Zodb-checkins
mailing list