diff --git a/.changes/0.2.2.json b/.changes/0.2.2.json new file mode 100644 index 0000000..e3a89b9 --- /dev/null +++ b/.changes/0.2.2.json @@ -0,0 +1,7 @@ +[ + { + "category": "AWS CLI", + "description": "0.2.2 Update the AWS Shell to support the latest version of the AWS CLI `1.16.287 `__.", + "type": "update" + } +] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b326434..b6e8904 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ========= +0.2.2 +===== + +* Update the AWS Shell to support the latest version of the AWS CLI `1.16.287 `__. + 0.2.1 ===== diff --git a/awsshell/__init__.py b/awsshell/__init__.py index 0ce73f6..dac58ad 100644 --- a/awsshell/__init__.py +++ b/awsshell/__init__.py @@ -13,7 +13,7 @@ from awsshell import utils -__version__ = '0.2.1' +__version__ = '0.2.2' def determine_doc_index_filename(): diff --git a/setup.py b/setup.py index 5696838..249417f 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ requires = [ - 'awscli>=1.16.10,<2.0.0', + 'awscli>=1.16.287,<2.0.0', 'prompt-toolkit>=1.0.0,<1.1.0', - 'boto3>=1.9.0,<2.0.0', + 'boto3>=1.10.23,<2.0.0', 'configobj>=5.0.6,<6.0.0', 'Pygments>=2.1.3,<3.0.0', ]