Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
c50008cb
Commit
c50008cb
authored
May 26, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internal 3.4.0b2 release, incorporating Jim's zope.testing.
parent
a38253df
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
9 deletions
+15
-9
NEWS.txt
NEWS.txt
+9
-3
doc/guide/zodb.tex
doc/guide/zodb.tex
+1
-1
doc/zodb.pdf
doc/zodb.pdf
+0
-0
setup.py
setup.py
+2
-2
src/ZEO/__init__.py
src/ZEO/__init__.py
+1
-1
src/ZEO/version.txt
src/ZEO/version.txt
+1
-1
src/ZODB/__init__.py
src/ZODB/__init__.py
+1
-1
No files found.
NEWS.txt
View file @
c50008cb
What's new in ZODB3 3.4b
2
?
What's new in ZODB3 3.4b
3
?
==========================
Release date: DD-May-2005
Release date: DD-MMM-2005
Following is combined news from the "internal releases" (to support
ongoing Zope 2.8 and Zope3 development) since the last public ZODB 3.4
release. These are the dates of the internal releases:
- 3.4b2 26-May-2005
Development
-----------
- ZODB's ``test.py`` is now a small driver for the shared
-
(3.4b2)
ZODB's ``test.py`` is now a small driver for the shared
``zope.testing.testrunner``. See the latter's documentation
for command-line arguments.
...
...
doc/guide/zodb.tex
View file @
c50008cb
\documentclass
{
howto
}
\title
{
ZODB/ZEO Programming Guide
}
\release
{
3.4.0b
1
}
\release
{
3.4.0b
2
}
\date
{
\today
}
\author
{
A.M.
\
Kuchling
}
...
...
doc/zodb.pdf
View file @
c50008cb
No preview for this file type
setup.py
View file @
c50008cb
...
...
@@ -49,7 +49,7 @@ from distutils.command.build_py import build_py
from
distutils.util
import
convert_path
if
sys
.
version_info
<
(
2
,
3
,
4
):
print
"ZODB 3.
3
requires Python 2.3.4 or higher"
print
"ZODB 3.
4
requires Python 2.3.4 or higher"
sys
.
exit
(
0
)
# Include directories for C extensions
...
...
@@ -264,7 +264,7 @@ class MyDistribution(Distribution):
doclines
=
__doc__
.
split
(
"
\
n
"
)
setup
(
name
=
"ZODB3"
,
version
=
"3.4.0b
1
"
,
version
=
"3.4.0b
2
"
,
maintainer
=
"Zope Corporation"
,
maintainer_email
=
"zodb-dev@zope.org"
,
url
=
"http://www.zope.org/Wikis/ZODB"
,
...
...
src/ZEO/__init__.py
View file @
c50008cb
...
...
@@ -22,4 +22,4 @@ ZEO is now part of ZODB; ZODB's home on the web is
"""
# The next line must use double quotes, so release.py recognizes it.
version
=
"3.4.0b
1
"
version
=
"3.4.0b
2
"
src/ZEO/version.txt
View file @
c50008cb
3.4.0b
1
3.4.0b
2
src/ZODB/__init__.py
View file @
c50008cb
...
...
@@ -13,7 +13,7 @@
##############################################################################
# The next line must use double quotes, so release.py recognizes it.
__version__
=
"3.4.0b
1
"
__version__
=
"3.4.0b
2
"
import
sys
import
__builtin__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment