Skip to content
Open
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
7 changes: 7 additions & 0 deletions .changes/0.2.2.json
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/aws/aws-cli/releases/tag/1.16.287>`__.",
"type": "update"
}
]
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
CHANGELOG
=========

0.2.2
=====

* Update the AWS Shell to support the latest version of the AWS CLI `1.16.287 <https://github.com/aws/aws-cli/releases/tag/1.16.287>`__.

0.2.1
=====

Expand Down
2 changes: 1 addition & 1 deletion awsshell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from awsshell import utils


__version__ = '0.2.1'
__version__ = '0.2.2'


def determine_doc_index_filename():
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
Expand Down