Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/rdbms-connect/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.2
++++++
+ Use compatible release for `setproctitle` to support Python 3.10

1.0.1
++++++
+ Add rdbms-module to cloud shell
Expand All @@ -17,7 +21,7 @@ Release History

0.1.3
++++++
* Introduce query/sql file execution command as 'flexible server execute' command.
* Introduce query/sql file execution command as 'flexible server execute' command.
* [BREKAING CHANGE] Move query execution of the 'flexible server connect' command to 'flexible server execute' command.

0.1.2
Expand All @@ -30,4 +34,4 @@ Release History

0.1.0
++++++
* Initial release of 'flexible server connect' command.
* Initial release of 'flexible server connect' command.
4 changes: 2 additions & 2 deletions src/rdbms-connect/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '1.0.1'
VERSION = '1.0.2'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand All @@ -33,7 +33,7 @@
]

DEPENDENCIES = [
'setproctitle==1.2.2',
'setproctitle~=1.2.2',
'mycli==1.22.2',
'pgcli==3.0.0'
]
Expand Down