diff --git a/src/rdbms-connect/HISTORY.rst b/src/rdbms-connect/HISTORY.rst index 12269d1d7d9..7828515b4a2 100644 --- a/src/rdbms-connect/HISTORY.rst +++ b/src/rdbms-connect/HISTORY.rst @@ -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 @@ -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 @@ -30,4 +34,4 @@ Release History 0.1.0 ++++++ -* Initial release of 'flexible server connect' command. \ No newline at end of file +* Initial release of 'flexible server connect' command. diff --git a/src/rdbms-connect/setup.py b/src/rdbms-connect/setup.py index acd85386702..3440618e188 100644 --- a/src/rdbms-connect/setup.py +++ b/src/rdbms-connect/setup.py @@ -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 @@ -33,7 +33,7 @@ ] DEPENDENCIES = [ - 'setproctitle==1.2.2', + 'setproctitle~=1.2.2', 'mycli==1.22.2', 'pgcli==3.0.0' ]