[Zodb-checkins] SVN: ZODB/branches/3.3/ Pretend 3.3 final is being
released.
Tim Peters
tim.one at comcast.net
Fri Sep 17 11:26:45 EDT 2004
Log message for revision 27561:
Pretend 3.3 final is being released.
So that if Zope X3-3.0 final is released while I'm on vacation,
it will have the right ZODB stuff in it (although I still need
to stitch this in to the Zope 3 and X3 trees).
Changed:
U ZODB/branches/3.3/NEWS.txt
U ZODB/branches/3.3/README.txt
U ZODB/branches/3.3/doc/guide/zodb.tex
U ZODB/branches/3.3/doc/zodb.pdf
U ZODB/branches/3.3/releases/ZODB3/PUBLICATION.cfg
U ZODB/branches/3.3/setup.py
U ZODB/branches/3.3/src/ZEO/__init__.py
U ZODB/branches/3.3/src/ZEO/version.txt
U ZODB/branches/3.3/src/ZODB/__init__.py
-=-
Modified: ZODB/branches/3.3/NEWS.txt
===================================================================
--- ZODB/branches/3.3/NEWS.txt 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/NEWS.txt 2004-09-17 15:26:45 UTC (rev 27561)
@@ -1,8 +1,10 @@
What's new in ZODB3 3.3?
========================
-Release date: DD-Sep-2004
+Release date: 17-Sep-2004
+Nothing changed since the 3.3c1 release, except for adding a new test.
+
What's new in ZODB3 3.3 release candidate 1?
============================================
Release date: 14-Sep-2004
Modified: ZODB/branches/3.3/README.txt
===================================================================
--- ZODB/branches/3.3/README.txt 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/README.txt 2004-09-17 15:26:45 UTC (rev 27561)
@@ -1,5 +1,5 @@
-ZODB3 3.3 release candidate 1
-=============================
+ZODB3 3.3
+=========
Introduction
------------
Modified: ZODB/branches/3.3/doc/guide/zodb.tex
===================================================================
--- ZODB/branches/3.3/doc/guide/zodb.tex 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/doc/guide/zodb.tex 2004-09-17 15:26:45 UTC (rev 27561)
@@ -1,7 +1,7 @@
\documentclass{howto}
\title{ZODB/ZEO Programming Guide}
-\release{3.3c1}
+\release{3.3}
\date{\today}
\author{A.M.\ Kuchling}
Modified: ZODB/branches/3.3/doc/zodb.pdf
===================================================================
(Binary files differ)
Modified: ZODB/branches/3.3/releases/ZODB3/PUBLICATION.cfg
===================================================================
--- ZODB/branches/3.3/releases/ZODB3/PUBLICATION.cfg 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/releases/ZODB3/PUBLICATION.cfg 2004-09-17 15:26:45 UTC (rev 27561)
@@ -13,7 +13,7 @@
Maintainer: ZODB Developers
Maintainer-email: zodb-dev at zope.org
Platform: any
-Classifier: Development Status :: 4 - Beta
+Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Modified: ZODB/branches/3.3/setup.py
===================================================================
--- ZODB/branches/3.3/setup.py 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/setup.py 2004-09-17 15:26:45 UTC (rev 27561)
@@ -20,8 +20,13 @@
interface, rich transaction support, and undo.
"""
+# The (non-obvious!) choices for the Trove Development Status line:
+# Development Status :: 5 - Production/Stable
+# Development Status :: 4 - Beta
+# Development Status :: 3 - Alpha
+
classifiers = """\
-Development Status :: 4 - Beta
+Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
@@ -216,7 +221,7 @@
doclines = __doc__.split("\n")
setup(name="ZODB3",
- version="3.3c1",
+ version="3.3",
maintainer="Zope Corporation",
maintainer_email="zodb-dev at zope.org",
url = "http://www.zope.org/Wikis/ZODB",
Modified: ZODB/branches/3.3/src/ZEO/__init__.py
===================================================================
--- ZODB/branches/3.3/src/ZEO/__init__.py 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/src/ZEO/__init__.py 2004-09-17 15:26:45 UTC (rev 27561)
@@ -22,4 +22,4 @@
"""
# The next line must use double quotes, so release.py recognizes it.
-version = "2.3c1"
+version = "2.3"
Modified: ZODB/branches/3.3/src/ZEO/version.txt
===================================================================
--- ZODB/branches/3.3/src/ZEO/version.txt 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/src/ZEO/version.txt 2004-09-17 15:26:45 UTC (rev 27561)
@@ -1 +1 @@
-2.3c1
+2.3
Modified: ZODB/branches/3.3/src/ZODB/__init__.py
===================================================================
--- ZODB/branches/3.3/src/ZODB/__init__.py 2004-09-17 11:48:05 UTC (rev 27560)
+++ ZODB/branches/3.3/src/ZODB/__init__.py 2004-09-17 15:26:45 UTC (rev 27561)
@@ -13,7 +13,7 @@
##############################################################################
# The next line must use double quotes, so release.py recognizes it.
-__version__ = "3.3c1"
+__version__ = "3.3"
import sys
import __builtin__
More information about the Zodb-checkins
mailing list