Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
++++++++

Expand Down
19 changes: 9 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = '0.8.0rc2'
VERSION = '0.8.0'

DEPENDENCIES = [
'argcomplete',
Expand Down Expand Up @@ -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'],
Expand Down