Skip to content

Commit fb7c3ea

Browse files
author
James William Pye
committed
Prepare for 0.9.2 release.
1 parent 894bee6 commit fb7c3ea

2 files changed

Lines changed: 12 additions & 11 deletions

File tree

postgresql/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
]
2323

2424
__author__ = "James William Pye <x@jwp.name>"
25-
__date__ = "2009-12-11 08:44:00-07"
25+
__date__ = "2009-12-14 21:16:00-07"
2626

2727
__project__ = 'py-postgresql'
2828
__project_id__ = 'http://python.projects.postgresql.org'
2929

3030
#: The py-postgresql version tuple.
31-
version_info = (0, 9, 2, 'dev', 0)
31+
version_info = (0, 9, 2, 'final', 0)
3232

3333
#: The py-postgresql version string.
3434
version = __version__ = '.'.join(map(str, version_info[:3])) + (

postgresql/documentation/changes.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
Changes
22
=======
33

4-
0.9.2
5-
-----
4+
0.9.2 released on 2009-12-14
5+
----------------------------
66

7-
* Correct types.Array binary serialization (8.5 added extra checks)
8-
* Add more encoding name mapping entries.
9-
* Correct protocol message type comparison method.
7+
* Alter protocol message type comparison method.
108
In 0.9.1 and before, types were compared using 'is' because all
119
message type objects were loaded from a tuple created by the
1210
postgresql.protocol.message_types module. In some environments,
@@ -17,13 +15,16 @@ Changes
1715
errors. The fix is to use the '==' operator. This does not add any
1816
significant overhead, but use of 'is' may return if some permanent storage
1917
method becomes available. [Reported by Radomir Stevanovic]
20-
* Documentation improvements.
2118
* Fix a bug revealed by a no route to host connection failure. Ended in an
2219
ambiguous KeyError due there being no message string for that particular
23-
errno. Add an appropriate message string fallback on a default message when
24-
a specific one doesn't exist.
20+
errno. Add an appropriate message string, and fallback on a default message
21+
when a specific one doesn't exist.
22+
* Correct types.Array binary serialization (8.5 added extra checks)
23+
* Add more encoding name mapping entries.
24+
* Documentation improvements.
2525
* Fix slice() support in Row.__getitem__.
26-
26+
* DEPRECATION: 2PC interfaces are being deprecated. Warnings in 1.0,
27+
removal in 1.1.
2728

2829
0.9.1 released on 2009-08-12
2930
----------------------------

0 commit comments

Comments
 (0)