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