Skip to content

Commit

Permalink
[Release] Release 0.8.0 (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiasli committed Mar 26, 2021
1 parent 03b46ab commit 02b7652
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
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

0 comments on commit 02b7652

Please sign in to comment.