Skip to content

Commit

Permalink
Prepare version 1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanruth committed Mar 3, 2023
1 parent eda6c26 commit 97f06b9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 1.6.4

changes since 1.6.3

* Correctly handle result of PREPARE statement, leave id of the prepared statement in Cursor.rowid for use in subsequent EXEC statement.

* Fix COPY ON CLIENT bug with filenames that contain spaces.

* Fix bug where not all server side result sets were closed if multiple statements were passed to one Cursor.execute() call, leading to a resource leak until the connection was closed.

* Rename Cursor.nextset(), the Python DB API reserves that name for something else.


# 1.6.3

changes since 1.6.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


__version__ = '1.6.3'
__version__ = '1.6.4'

setup(
name='pymonetdb',
Expand Down

0 comments on commit 97f06b9

Please sign in to comment.