From 4e10e79f952853bbaed60c7477fb3e38737193ec Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Tue, 26 Jan 2021 11:20:38 +0800 Subject: [PATCH 1/9] Release 0.8.0 --- HISTORY.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index fd841fe..32dace6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ Release History =============== +0.8.0 ++++++ + +* [CI] Support Python 3.9 (#229) +* [Log] `CLILogging.configure` returns as early as possible (#228) + 0.8.0rc2 ++++++++ diff --git a/setup.py b/setup.py index 6e3816c..d4e0071 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = '0.8.0rc2' +VERSION = '0.8.0' DEPENDENCIES = [ 'argcomplete', From 9d9065bc8620779cdaf057916d298f6573545b1a Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Tue, 26 Jan 2021 12:13:05 +0800 Subject: [PATCH 2/9] Update requirements.txt --- requirements.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/requirements.txt b/requirements.txt index 209afc4..e82c2d5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ -argcomplete==1.11.1 -colorama==0.4.3 -flake8==3.7.9 -jmespath==0.9.5 -mock==4.0.1 -pylint==2.5.3 -Pygments==2.5.2 -PyYAML==5.3.1 -six==1.14.0 -tabulate==0.8.6 +argcomplete==1.12.2 +colorama==0.4.4 +flake8==3.8.3 +jmespath==0.10.0 +mock==4.0.2 +pylint==2.3.0 +Pygments==2.7.4 +PyYAML==5.4.1 +six==1.15.0 +tabulate==0.8.7 vcrpy==4.0.2 -pytest==5.3.5 +pytest==5.4.3 From b17ccdc0d633b411f2d3613a6b054e5df3afadab Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Tue, 26 Jan 2021 12:37:31 +0800 Subject: [PATCH 3/9] update requirements.txt --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index e82c2d5..fa1fa8f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ argcomplete==1.12.2 colorama==0.4.4 -flake8==3.8.3 +flake8==3.8.4 jmespath==0.10.0 -mock==4.0.2 -pylint==2.3.0 +mock==4.0.3 Pygments==2.7.4 +pylint==2.6.0 +pytest==6.2.2 PyYAML==5.4.1 six==1.15.0 tabulate==0.8.7 vcrpy==4.0.2 -pytest==5.4.3 From fbf2f2180df02f68fbb92eea1429f9e48c8f6d80 Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Tue, 2 Feb 2021 21:28:06 +0800 Subject: [PATCH 4/9] Update HISTORY.rst --- HISTORY.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 32dace6..2bff1c9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,8 +6,9 @@ Release History 0.8.0 +++++ -* [CI] Support Python 3.9 (#229) -* [Log] `CLILogging.configure` returns as early as possible (#228) +* 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 ++++++++ From 0340e72d2fd9c10acdfe7f0afd2cf940488af817 Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Tue, 2 Feb 2021 21:29:03 +0800 Subject: [PATCH 5/9] remove six --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fa1fa8f..7d54ed2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,6 +7,5 @@ Pygments==2.7.4 pylint==2.6.0 pytest==6.2.2 PyYAML==5.4.1 -six==1.15.0 tabulate==0.8.7 vcrpy==4.0.2 From 3acbcbc5ce570b5943326f69878d202f76f5a88f Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Thu, 11 Mar 2021 11:49:46 +0800 Subject: [PATCH 6/9] Add 3.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ff450f6..b6d4952 100644 --- a/setup.py +++ b/setup.py @@ -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'], From 242bdb1259a1db7aa1d652bb2b936815c078d492 Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Mon, 15 Mar 2021 10:40:34 +0800 Subject: [PATCH 7/9] Bump versions --- requirements.txt | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index ab11b43..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 -Pygments==2.5.2 -pylint==2.6.0 -pytest==5.3.5 +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 +tabulate==0.8.9 +vcrpy==4.1.1 From 011686fecc43f39c2167991bafec58af8114f0c7 Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Mon, 22 Mar 2021 16:41:40 +0800 Subject: [PATCH 8/9] Update HISTORY.rst --- HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.rst b/HISTORY.rst index 2bff1c9..138966c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,7 @@ Release History * 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) +* Init colorama only in Windows legacy terminal (#238) 0.8.0rc2 ++++++++ From 2df6e407a611c61e101466c00d28d2b6b6ed8072 Mon Sep 17 00:00:00 2001 From: Jiashuo Li Date: Thu, 25 Mar 2021 20:35:47 +0800 Subject: [PATCH 9/9] Update HISTORY.rst --- HISTORY.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 138966c..a33422c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,10 +6,12 @@ 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) -* Init colorama only in Windows legacy terminal (#238) 0.8.0rc2 ++++++++