From d38453fd0bc622de940cddd6054995052aff96f8 Mon Sep 17 00:00:00 2001 From: Sheng Date: Fri, 10 Aug 2018 13:45:01 +0800 Subject: [PATCH] Updated version --- README.md | 8 ++++---- README.rst | 8 ++++---- setup.py | 1 + webssh/_version.py | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e9abaf7..d816fde 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A simple web application to be used as an ssh client to connect to your ssh serv * Fullscreen terminal supported. * Terminal window resizable. * Auto detect system default encoding. -* Compatible with Python 2.7-3.6. +* Compatible with Python 2.7-3.7. ### Instructions ``` @@ -27,13 +27,13 @@ wssh ### Options ``` -# configure listen address and port +# listen address and port wssh --address='0.0.0.0' --port=8000 -# configure missing host key policy +# missing host key policy wssh --policy=reject -# configure logging level +# logging level wssh --logging=debug # log to file diff --git a/README.rst b/README.rst index f4f8012..701c377 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Features - Fullscreen terminal supported. - Terminal window resizable. - Auto detect system default encoding. -- Compatible with Python 2.7-3.6. +- Compatible with Python 2.7-3.7. Instructions ~~~~~~~~~~~~ @@ -36,13 +36,13 @@ Options :: - # configure listen address and port + # listen address and port wssh --address='0.0.0.0' --port=8000 - # configure missing host key policy + # missing host key policy wssh --policy=reject - # configure logging level + # logging level wssh --logging=debug # log to file diff --git a/setup.py b/setup.py index b2fb3a7..590ffe9 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,7 @@ setup( 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], install_requires=[ 'tornado>=4.5.0', diff --git a/webssh/_version.py b/webssh/_version.py index 78843cb..294b645 100644 --- a/webssh/_version.py +++ b/webssh/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 2, 5) +__version_info__ = (0, 2, 6) __version__ = '.'.join(map(str, __version_info__))