[Zodb-checkins] SVN: ZODB/branches/3.7/ Updated release info.
Jim Fulton
jim at zope.com
Tue Nov 21 17:33:23 EST 2006
Log message for revision 71259:
Updated release info.
Changed:
U ZODB/branches/3.7/NEWS.txt
U ZODB/branches/3.7/doc/guide/zodb.tex
U ZODB/branches/3.7/setup.py
U ZODB/branches/3.7/src/ZEO/__init__.py
U ZODB/branches/3.7/src/ZEO/version.txt
U ZODB/branches/3.7/src/ZODB/__init__.py
-=-
Modified: ZODB/branches/3.7/NEWS.txt
===================================================================
--- ZODB/branches/3.7/NEWS.txt 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/NEWS.txt 2006-11-21 22:33:23 UTC (rev 71259)
@@ -1,6 +1,21 @@
-What's new on ZODB 3.7b2?
-=========================
+What's new on ZODB 3.7.0b3?
+===========================
+Packaging
+---------
+
+- (3.7.0b3) ZODB is now packaged without it's dependencies
+
+ ZODB no longer includes copies of dependencies such as
+ ZConfig, zope.interface and so on. It now treats these as
+ dependencies. If ZODB is installed with easy_install or
+ zc.buildout, the dependencies will be installed automatically.
+
+
+- (3.7.0b3) ZODB is now a buildout
+
+ ZODB checkouts are now built and tested using zc.buildout.
+
ClientStorage
-------------
Modified: ZODB/branches/3.7/doc/guide/zodb.tex
===================================================================
--- ZODB/branches/3.7/doc/guide/zodb.tex 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/doc/guide/zodb.tex 2006-11-21 22:33:23 UTC (rev 71259)
@@ -1,7 +1,7 @@
\documentclass{howto}
\title{ZODB/ZEO Programming Guide}
-\release{3.7.0a0}
+\release{3.7.0b3}
\date{\today}
\author{A.M.\ Kuchling}
Modified: ZODB/branches/3.7/setup.py
===================================================================
--- ZODB/branches/3.7/setup.py 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/setup.py 2006-11-21 22:33:23 UTC (rev 71259)
@@ -20,6 +20,8 @@
interface, rich transaction support, and undo.
"""
+VERSION = "3.7.0b3"
+
# The (non-obvious!) choices for the Trove Development Status line:
# Development Status :: 5 - Production/Stable
# Development Status :: 4 - Beta
@@ -238,7 +240,7 @@
setup(name="ZODB3",
- version="3.7.0a2",
+ version=VERSION,
maintainer="Zope Corporation",
maintainer_email="zodb-dev at zope.org",
url = "http://www.zope.org/Wikis/ZODB",
Modified: ZODB/branches/3.7/src/ZEO/__init__.py
===================================================================
--- ZODB/branches/3.7/src/ZEO/__init__.py 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/src/ZEO/__init__.py 2006-11-21 22:33:23 UTC (rev 71259)
@@ -22,4 +22,4 @@
"""
# The next line must use double quotes, so release.py recognizes it.
-version = "3.7.0a0"
+version = "3.7.0b3"
Modified: ZODB/branches/3.7/src/ZEO/version.txt
===================================================================
--- ZODB/branches/3.7/src/ZEO/version.txt 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/src/ZEO/version.txt 2006-11-21 22:33:23 UTC (rev 71259)
@@ -1 +1 @@
-3.7.0a0
+3.7.0b3
Modified: ZODB/branches/3.7/src/ZODB/__init__.py
===================================================================
--- ZODB/branches/3.7/src/ZODB/__init__.py 2006-11-21 22:22:48 UTC (rev 71258)
+++ ZODB/branches/3.7/src/ZODB/__init__.py 2006-11-21 22:33:23 UTC (rev 71259)
@@ -13,7 +13,7 @@
##############################################################################
# The next line must use double quotes, so release.py recognizes it.
-__version__ = "3.7.0a0"
+__version__ = "3.7.0b3"
import sys
More information about the Zodb-checkins
mailing list