diff --git a/changelog.md b/changelog.md index 581d2acf..7667ab59 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,7 @@ Upcoming ======== + Bug Fixes: ---------- @@ -9,6 +10,12 @@ Bug Fixes: * Let the `--prompt` option act normally with its predefined default value + +Internal: +--------- +* paramiko is newer than 2.11.0 now, remove version pinning `cryptography`. + + 1.27.0 (2023/08/11) =================== diff --git a/mycli/AUTHORS b/mycli/AUTHORS index 474f14c2..d71c5537 100644 --- a/mycli/AUTHORS +++ b/mycli/AUTHORS @@ -1,11 +1,7 @@ -Project Lead: -------------- - * Thomas Roten - - Core Developers: ---------------- + * Thomas Roten * Irina Truong * Matheus Rosa * Darik Gamble @@ -94,11 +90,13 @@ Contributors: * Arvind Mishra * Kevin Schmeichel * Mel Dafert + * Thomas Copper * Will Wang * Alfred Wingate * Zhanze Wang * Houston Wong + Created by: ----------- diff --git a/setup.py b/setup.py index b167c2dc..2c4f9e18 100755 --- a/setup.py +++ b/setup.py @@ -18,9 +18,8 @@ install_requirements = [ 'click >= 7.0', - # Temporary to suppress paramiko Blowfish warning which breaks CI. - # Pinning cryptography should not be needed after paramiko 2.11.0. - 'cryptography == 36.0.2', + # Pinning cryptography is not needed after paramiko 2.11.0. Correct it + 'cryptography >= 1.0.0', # 'Pygments>=1.6,<=2.11.1', 'Pygments>=1.6', 'prompt_toolkit>=3.0.6,<4.0.0',