[Zodb-checkins] SVN: ZODB/branches/3.4/ Make an internal 3.4a2
release, so ongoing Zope2 and Zope3
Tim Peters
tim.one at comcast.net
Sun Apr 3 14:06:09 EDT 2005
Log message for revision 29858:
Make an internal 3.4a2 release, so ongoing Zope2 and Zope3
development get a release tag to use.
Changed:
U ZODB/branches/3.4/NEWS.txt
U ZODB/branches/3.4/doc/guide/zodb.tex
U ZODB/branches/3.4/doc/zodb.pdf
U ZODB/branches/3.4/setup.py
U ZODB/branches/3.4/src/ZEO/__init__.py
U ZODB/branches/3.4/src/ZEO/version.txt
U ZODB/branches/3.4/src/ZODB/__init__.py
-=-
Modified: ZODB/branches/3.4/NEWS.txt
===================================================================
--- ZODB/branches/3.4/NEWS.txt 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/NEWS.txt 2005-04-03 18:06:09 UTC (rev 29858)
@@ -1,3 +1,18 @@
+What's new in ZODB3 3.4a2?
+==========================
+Release date: 03-Apr-2005
+
+This was an internal release, to supply "quick fixes" for a few glitches
+in 3.4a1, and to give ongoing Zope2 and Zope3 development a release tag to
+use:
+
+- A ``pdb.set_trace()`` call was mistakenly left in method
+ ``FileStorage.modifiedInVersion()``.
+
+- The test ``checkOldStyleRoot`` failed in Zope3, because of an obscure
+ dependence on the ``Persistence`` package (which Zope3 doesn't use).
+
+
What's new in ZODB3 3.4a1?
==========================
Release date: 01-Apr-2005
Modified: ZODB/branches/3.4/doc/guide/zodb.tex
===================================================================
--- ZODB/branches/3.4/doc/guide/zodb.tex 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/doc/guide/zodb.tex 2005-04-03 18:06:09 UTC (rev 29858)
@@ -1,7 +1,7 @@
\documentclass{howto}
\title{ZODB/ZEO Programming Guide}
-\release{3.4a1}
+\release{3.4a2}
\date{\today}
\author{A.M.\ Kuchling}
Modified: ZODB/branches/3.4/doc/zodb.pdf
===================================================================
(Binary files differ)
Modified: ZODB/branches/3.4/setup.py
===================================================================
--- ZODB/branches/3.4/setup.py 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/setup.py 2005-04-03 18:06:09 UTC (rev 29858)
@@ -247,7 +247,7 @@
doclines = __doc__.split("\n")
setup(name="ZODB3",
- version="3.4a1",
+ version="3.4a2",
maintainer="Zope Corporation",
maintainer_email="zodb-dev at zope.org",
url = "http://www.zope.org/Wikis/ZODB",
Modified: ZODB/branches/3.4/src/ZEO/__init__.py
===================================================================
--- ZODB/branches/3.4/src/ZEO/__init__.py 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/src/ZEO/__init__.py 2005-04-03 18:06:09 UTC (rev 29858)
@@ -22,4 +22,4 @@
"""
# The next line must use double quotes, so release.py recognizes it.
-version = "2.4a1"
+version = "2.4a2"
Modified: ZODB/branches/3.4/src/ZEO/version.txt
===================================================================
--- ZODB/branches/3.4/src/ZEO/version.txt 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/src/ZEO/version.txt 2005-04-03 18:06:09 UTC (rev 29858)
@@ -1 +1 @@
-2.4a1
+2.4a2
Modified: ZODB/branches/3.4/src/ZODB/__init__.py
===================================================================
--- ZODB/branches/3.4/src/ZODB/__init__.py 2005-04-03 15:32:28 UTC (rev 29857)
+++ ZODB/branches/3.4/src/ZODB/__init__.py 2005-04-03 18:06:09 UTC (rev 29858)
@@ -13,7 +13,7 @@
##############################################################################
# The next line must use double quotes, so release.py recognizes it.
-__version__ = "3.4a1"
+__version__ = "3.4a2"
import sys
import __builtin__
More information about the Zodb-checkins
mailing list