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
Kirill Smelkov
ZODB
Commits
ee4edbc1
Commit
ee4edbc1
authored
Jun 03, 2004
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change version #s and dates for 3.3b1.
parent
fc681dea
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
13 deletions
+12
-13
NEWS.txt
NEWS.txt
+1
-1
release.py
release.py
+5
-6
setup.py
setup.py
+1
-1
src/ZEO/__init__.py
src/ZEO/__init__.py
+2
-2
src/ZEO/version.txt
src/ZEO/version.txt
+1
-1
src/ZODB/__init__.py
src/ZODB/__init__.py
+2
-2
No files found.
NEWS.txt
View file @
ee4edbc1
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
------
------
...
...
release.py
View file @
ee4edbc1
...
@@ -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:])
setup.py
View file @
ee4edbc1
...
@@ -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.3
a3
"
,
version
=
"3.3
b1
"
,
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"
,
...
...
src/ZEO/__init__.py
View file @
ee4edbc1
...
@@ -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 re
plac
e.py recognizes it.
# The next line must use double quotes, so re
leas
e.py recognizes it.
version
=
"2.3
a3
"
version
=
"2.3
b1
"
src/ZEO/version.txt
View file @
ee4edbc1
2.3
a3
2.3
b1
src/ZODB/__init__.py
View file @
ee4edbc1
...
@@ -12,8 +12,8 @@
...
@@ -12,8 +12,8 @@
#
#
##############################################################################
##############################################################################
# The next line must use double quotes, so re
plac
e.py recognizes it.
# The next line must use double quotes, so re
leas
e.py recognizes it.
__version__
=
"3.3
a3
"
__version__
=
"3.3
b1
"
import
sys
import
sys
import
__builtin__
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