diff --git a/HISTORY.rst b/HISTORY.rst index fd841fe..a33422c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ Release History =============== +0.8.0 ++++++ + +* Make colors customizable (#242) +* Init colorama only in Windows legacy terminal (#238) +* Add `raw_result` to `CommandResultItem` (#235) +* Refine code style to comply with Python 3 (#232, #233) +* CI: Support Python 3.9 (#229) +* Logging: `CLILogging.configure` returns as early as possible (#228) + 0.8.0rc2 ++++++++ diff --git a/requirements.txt b/requirements.txt index 20699d0..d8a7dfa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,11 @@ -argcomplete==1.11.1 -colorama==0.4.3 +argcomplete==1.12.2 +colorama==0.4.4 flake8==3.8.4 -jmespath==0.9.5 -mock==4.0.1 -pylint==2.6.0 -Pygments==2.5.2 +jmespath==0.10.0 +mock==4.0.3 +Pygments==2.8.1 +pylint==2.7.2 +pytest==6.2.2 PyYAML -six==1.14.0 -tabulate==0.8.6 -vcrpy==4.0.2 -pytest==5.3.5 +tabulate==0.8.9 +vcrpy==4.1.1 diff --git a/setup.py b/setup.py index 72cdb80..b6d4952 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = '0.8.0rc2' +VERSION = '0.8.0' DEPENDENCIES = [ 'argcomplete', @@ -38,10 +38,10 @@ 'Intended Audience :: System Administrators', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'License :: OSI Approved :: MIT License', ], packages=['knack', 'knack.testsdk'],