Skip to content

Commit cf3540a

Browse files
author
James William Pye
committed
Prepare for v1.0.2
1 parent 86f92f9 commit cf3540a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

postgresql/documentation/changes.txt

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

4-
1.0.2 in development
5-
--------------------
4+
1.0.2 released on 2010-09-18
5+
----------------------------
66

7+
* Add support for DOMAINs in registered composites. (Elvis Pranskevichus)
8+
* Properly raise StopIteration in Cursor.__next__. (Elvis Pranskevichus)
79
* Add Cluster Management documentation.
810
* Release savepoints after rolling them back.
9-
* Add support for DOMAINs in registered composites. (Elvis Pranskevichus)
10-
* Properly raise StopIteration in Cursor.__next__ (Elvis Pranskevichus)
1111
* Fix Startup() usage for Python 3.2.
1212
* Emit deprecation warning when 'gid' is given to xact().
1313
* Compensate for Python3.2's ElementTree API changes.

postgresql/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
description = 'Driver and tools library for PostgreSQL'
1111

1212
# Set this to the target date when approaching a release.
13-
date = None
14-
tags = set(('documentation','fixes'))
13+
date = 'Sat Sep 18 12:17:29 MST 2010'
14+
tags = set(('documentation','fixes','features','deprecations'))
1515
version_info = (1, 0, 2)
1616
version = '.'.join(map(str, version_info)) + (date is None and 'dev' or '')

0 commit comments

Comments
 (0)