Commit ee4edbc1 authored by Tim Peters's avatar Tim Peters

Change version #s and dates for 3.3b1.

parent fc681dea
What's new in ZODB3 3.3 beta 1
==============================
Release date: DD-MMM-2004
Release date: 03-Jun-2004
BTrees
------
......
......@@ -35,10 +35,9 @@ def replace(filename, pat, repl):
new = re.sub(pat, repl, line)
print new,
print >> e, "In %r, replaced:" % filename
print >> e, " ", line
print >> e, "by:"
print >> e, " ", new
print >> e, "In %s, replaced:" % filename
print >> e, " ", repr(line)
print >> e, " ", repr(new)
else:
print line,
......@@ -77,8 +76,8 @@ def main(args):
r"^Release date: .*",
"Release date: %s" % date)
replace("doc/guide/zodb.tex",
r"\\release{\S+}",
r"\release{%s}" % version)
r"release{\S+}",
"release{%s}" % version)
if __name__ == "__main__":
import sys
main(sys.argv[1:])
......@@ -216,7 +216,7 @@ class MyDistribution(Distribution):
doclines = __doc__.split("\n")
setup(name="ZODB3",
version="3.3a3",
version="3.3b1",
maintainer="Zope Corporation",
maintainer_email="zodb-dev@zope.org",
url = "http://www.zope.org/Wikis/ZODB",
......
......@@ -21,5 +21,5 @@ ZEO is now part of ZODB; ZODB's home on the web is
"""
# The next line must use double quotes, so replace.py recognizes it.
version = "2.3a3"
# The next line must use double quotes, so release.py recognizes it.
version = "2.3b1"
......@@ -12,8 +12,8 @@
#
##############################################################################
# The next line must use double quotes, so replace.py recognizes it.
__version__ = "3.3a3"
# The next line must use double quotes, so release.py recognizes it.
__version__ = "3.3b1"
import sys
import __builtin__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment