diff --git a/changelog.md b/changelog.md index 7cc0d930..7eced3b3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,17 @@ Upcoming ======== + +Bug Fixes: +---------- +* Don't install tests. + + Internal: --------- * paramiko is newer than 2.11.0 now, remove version pinning `cryptography`. + 1.27.0 (2023/08/11) =================== @@ -21,6 +28,7 @@ Bug Fixes: * Remove vi-mode bindings for prettify/unprettify. * Honor `\G` when executing from commandline with `-e`. * Correctly report the version of TiDB. +* Revised `botton` spelling mistakes with `bottom` in `mycli/clitoolbar.py` 1.26.1 (2022/09/01) diff --git a/mycli/AUTHORS b/mycli/AUTHORS index cbaa7ffd..71adc141 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 @@ -95,6 +91,9 @@ Contributors: * Kevin Schmeichel * Mel Dafert * Thomas Copper + * Alfred Wingate + * Zhanze Wang + Created by: ----------- diff --git a/mycli/clitoolbar.py b/mycli/clitoolbar.py index 24d11083..52b6ee45 100644 --- a/mycli/clitoolbar.py +++ b/mycli/clitoolbar.py @@ -7,8 +7,7 @@ def create_toolbar_tokens_func(mycli, show_fish_help): """Return a function that generates the toolbar tokens.""" def get_toolbar_tokens(): - result = [] - result.append(('class:bottom-toolbar', ' ')) + result = [('class:bottom-toolbar', ' ')] if mycli.multi_line: delimiter = special.get_current_delimiter() @@ -26,7 +25,7 @@ def get_toolbar_tokens(): '[F3] Multiline: OFF ')) if mycli.prompt_app.editing_mode == EditingMode.VI: result.append(( - 'class:botton-toolbar.on', + 'class:bottom-toolbar.on', 'Vi-mode ({})'.format(_get_vi_mode()) )) diff --git a/setup.py b/setup.py index 212fb7b7..2c4f9e18 100755 --- a/setup.py +++ b/setup.py @@ -94,7 +94,7 @@ def run_tests(self): author_email='mycli-dev@googlegroups.com', version=version, url='http://mycli.net', - packages=find_packages(), + packages=find_packages(exclude=['test*']), package_data={'mycli': ['myclirc', 'AUTHORS', 'SPONSORS']}, description=description, long_description=description,