Skip to content

Commit 60d29e0

Browse files
committed
Preparing for the 1.1 release.
1 parent 8c2f73c commit 60d29e0

26 files changed

Lines changed: 47 additions & 38 deletions

DBUtils/Docs/UsersGuide.de.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ <h2>Installation als Unterpaket (Plug-In) von Webware for Python</h2>
165165
</div>
166166
<div class="section" id="anforderungen">
167167
<h1>Anforderungen</h1>
168-
<p>DBUtils arbeitet mit <a class="reference external" href="http://www.python.org">Python</a> 2.2 oder einer neueren Version von Python 2.
168+
<p>DBUtils arbeitet mit <a class="reference external" href="http://www.python.org">Python</a> 2.3 oder einer neueren Version von Python 2.
169169
Die Module in der Variante für klassisches PyGreSQL benötigen <a class="reference external" href="http://www.pygresql.org">PyGreSQL</a>
170170
Version 3.4 oder höher, während die Module in der allgemeinen Variante
171171
für DB-API 2 mit jedem beliebigen Python-Datenbankadapter-Modul

DBUtils/Docs/UsersGuide.de.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ wenn Sie DBUtils in die Webware-Dokumentation integrieren wollen::
106106
Anforderungen
107107
=============
108108

109-
DBUtils arbeitet mit Python_ 2.2 oder einer neueren Version von Python 2.
109+
DBUtils arbeitet mit Python_ 2.3 oder einer neueren Version von Python 2.
110110
Die Module in der Variante für klassisches PyGreSQL benötigen PyGreSQL_
111111
Version 3.4 oder höher, während die Module in der allgemeinen Variante
112112
für DB-API 2 mit jedem beliebigen Python-Datenbankadapter-Modul

DBUtils/Docs/UsersGuide.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ <h2>Installation as a Webware for Python subpackage (plug-in)</h2>
164164
</div>
165165
<div class="section" id="requirements">
166166
<h1>Requirements</h1>
167-
<p>DBUtils runs with <a class="reference external" href="http://www.python.org">Python</a> 2.2 or newer Python 2 versions. The modules in
167+
<p>DBUtils runs with <a class="reference external" href="http://www.python.org">Python</a> 2.3 or newer Python 2 versions. The modules in
168168
the classic PyGreSQL variant need <a class="reference external" href="http://www.pygresql.org">PyGreSQL</a> version 3.4 or above, while the
169169
modules in the universal DB-API 2 variant run with any Python <a class="reference external" href="http://www.python.org/dev/peps/pep-0249/">DB-API 2</a>
170170
compliant database interface module.</p>

DBUtils/Docs/UsersGuide.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ integrate the DBUtils documentation into the Webware documentation::
105105
Requirements
106106
============
107107

108-
DBUtils runs with Python_ 2.2 or newer Python 2 versions. The modules in
108+
DBUtils runs with Python_ 2.3 or newer Python 2 versions. The modules in
109109
the classic PyGreSQL variant need PyGreSQL_ version 3.4 or above, while the
110110
modules in the universal DB-API 2 variant run with any Python `DB-API 2`_
111111
compliant database interface module.

DBUtils/PersistentDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
9696
Requirements:
9797
98-
Python >= 2.2, < 3.0.
98+
Python >= 2.3, < 3.0.
9999
100100
101101
Ideas for improvement:
@@ -116,7 +116,7 @@
116116
117117
"""
118118

119-
__version__ = '1.0'
119+
__version__ = '1.1'
120120
__revision__ = "$Rev$"
121121
__date__ = "$Date$"
122122

DBUtils/PersistentPg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
8787
Requirements:
8888
89-
Python >= 2.2, < 3.0, PyGreSQL >= 3.4.
89+
Python >= 2.3, < 3.0, PyGreSQL >= 3.4.
9090
9191
9292
Ideas for improvement:
@@ -107,7 +107,7 @@
107107
108108
"""
109109

110-
__version__ = '1.0'
110+
__version__ = '1.1'
111111
__revision__ = "$Rev$"
112112
__date__ = "$Date$"
113113

DBUtils/PooledDB.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
140140
"""
141141

142-
__version__ = '1.0'
142+
__version__ = '1.1'
143143
__revision__ = "$Rev$"
144144
__date__ = "$Date$"
145145

DBUtils/PooledPg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
109109
"""
110110

111-
__version__ = '1.0'
111+
__version__ = '1.1'
112112
__revision__ = "$Rev$"
113113
__date__ = "$Date$"
114114

DBUtils/Properties.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name = 'DBUtils'
22

3-
version = (1, 0, 0)
3+
version = (1, 1, 0)
44

55
docs = [
66
{'name': "User's Guide", 'file': 'UsersGuide.html'},
77
]
88

99
status = 'beta'
1010

11-
requiredPyVersion = (2, 2, 0)
11+
requiredPyVersion = (2, 3, 0)
1212

1313
synopsis = """DBUtils provides database related support classes and functions to Webware. There is plenty of useful reusable code here."""
1414

DBUtils/SimplePooledDB.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
7474
"""
7575

76-
__version__ = '1.0'
76+
__version__ = '1.1'
7777
__revision__ = "$Rev$"
7878
__date__ = "$Date$"
7979

0 commit comments

Comments
 (0)