[Python-modules-commits] [awscli] 01/04: New upstream version 1.11.117
Takaki Taniguchi
takaki at moszumanska.debian.org
Mon Jul 10 08:07:23 UTC 2017
This is an automated email from the git hooks/post-receive script.
takaki pushed a commit to branch master
in repository awscli.
commit f1c38980736eacdee39504774b050b2492c76b8b
Author: TANIGUCHI Takaki <takaki at asis.media-as.org>
Date: Mon Jul 10 16:47:09 2017 +0900
New upstream version 1.11.117
---
PKG-INFO | 2 +-
awscli.egg-info/PKG-INFO | 2 +-
awscli.egg-info/requires.txt | 2 +-
awscli/__init__.py | 2 +-
awscli/examples/iam/update-assume-role-policy.rst | 2 +-
awscli/examples/organizations/describe-create-account-status.rst | 4 ++--
awscli/examples/s3api/list-buckets.rst | 2 +-
bin/aws_zsh_completer.sh | 3 ---
setup.cfg | 2 +-
setup.py | 2 +-
10 files changed, 10 insertions(+), 13 deletions(-)
diff --git a/PKG-INFO b/PKG-INFO
index 045f380..77d30de 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: awscli
-Version: 1.11.115
+Version: 1.11.117
Summary: Universal Command Line Environment for AWS.
Home-page: http://aws.amazon.com/cli/
Author: Amazon Web Services
diff --git a/awscli.egg-info/PKG-INFO b/awscli.egg-info/PKG-INFO
index 045f380..77d30de 100644
--- a/awscli.egg-info/PKG-INFO
+++ b/awscli.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: awscli
-Version: 1.11.115
+Version: 1.11.117
Summary: Universal Command Line Environment for AWS.
Home-page: http://aws.amazon.com/cli/
Author: Amazon Web Services
diff --git a/awscli.egg-info/requires.txt b/awscli.egg-info/requires.txt
index ab489ab..a50bbe1 100644
--- a/awscli.egg-info/requires.txt
+++ b/awscli.egg-info/requires.txt
@@ -1,4 +1,4 @@
-botocore==1.5.78
+botocore==1.5.80
colorama>=0.2.5,<=0.3.7
docutils>=0.10
rsa>=3.1.2,<=3.5.0
diff --git a/awscli/__init__.py b/awscli/__init__.py
index 88d7330..435a311 100644
--- a/awscli/__init__.py
+++ b/awscli/__init__.py
@@ -17,7 +17,7 @@ A Universal Command Line Environment for Amazon Web Services.
"""
import os
-__version__ = '1.11.115'
+__version__ = '1.11.117'
#
# Get our data path to be added to botocore's search path
diff --git a/awscli/examples/iam/update-assume-role-policy.rst b/awscli/examples/iam/update-assume-role-policy.rst
index 07c902d..0558285 100644
--- a/awscli/examples/iam/update-assume-role-policy.rst
+++ b/awscli/examples/iam/update-assume-role-policy.rst
@@ -2,7 +2,7 @@
The following ``update-assume-role-policy`` command updates the trust policy for the role named ``Test-Role``::
- aws iam update-assume-role-policy --role-name Test-Tole --policy-document file://Test-Role-Trust-Policy.json
+ aws iam update-assume-role-policy --role-name Test-Role --policy-document file://Test-Role-Trust-Policy.json
The trust policy is defined as a JSON document in the *Test-Role-Trust-Policy.json* file. (The file name and extension
do not have significance.) The trust policy must specify a principal.
diff --git a/awscli/examples/organizations/describe-create-account-status.rst b/awscli/examples/organizations/describe-create-account-status.rst
index 0840ab4..7f78c5c 100755
--- a/awscli/examples/organizations/describe-create-account-status.rst
+++ b/awscli/examples/organizations/describe-create-account-status.rst
@@ -9,7 +9,7 @@ Command::
Output::
{
- "CreateAccountStatusRequest": {
+ "CreateAccountStatus": {
"State": "SUCCEEDED",
"AccountId": "555555555555",
"AccountName": "Beta account",
@@ -17,4 +17,4 @@ Output::
"CompletedTimestamp": 1470684532.472,
"Id": "car-examplecreateaccountrequestid111"
}
- }
\ No newline at end of file
+ }
diff --git a/awscli/examples/s3api/list-buckets.rst b/awscli/examples/s3api/list-buckets.rst
index b89ce4e..f767e9b 100644
--- a/awscli/examples/s3api/list-buckets.rst
+++ b/awscli/examples/s3api/list-buckets.rst
@@ -1,7 +1,7 @@
The following command uses the ``list-buckets`` command to display the names of all your Amazon S3 buckets (across all
regions)::
- aws s3api list-buckets --query 'Buckets[].Name'
+ aws s3api list-buckets --query "Buckets[].Name"
The query option filters the output of ``list-buckets`` down to only the bucket names.
diff --git a/bin/aws_zsh_completer.sh b/bin/aws_zsh_completer.sh
index ffc9a7b..a2ee80e 100644
--- a/bin/aws_zsh_completer.sh
+++ b/bin/aws_zsh_completer.sh
@@ -12,9 +12,6 @@
# https://github.com/zsh-users/zsh/commit/edab1d3dbe61da7efe5f1ac0e40444b2ec9b9570
#
# zsh relases prior to that version do not export the required env variables!
-#
-# It is planned to write a proper zsh auto completion soon. Please talk
-# to Frank Becker <fb at alien8.de>.
autoload -Uz bashcompinit
bashcompinit -i
diff --git a/setup.cfg b/setup.cfg
index cc53e8b..bd2b195 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,7 +3,7 @@ universal = 1
[metadata]
requires-dist =
- botocore==1.5.78
+ botocore==1.5.80
colorama>=0.2.5,<=0.3.7
docutils>=0.10
rsa>=3.1.2,<=3.5.0
diff --git a/setup.py b/setup.py
index 60ebd77..76b54e7 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")
-requires = ['botocore==1.5.78',
+requires = ['botocore==1.5.80',
'colorama>=0.2.5,<=0.3.7',
'docutils>=0.10',
'rsa>=3.1.2,<=3.5.0',
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/awscli.git
More information about the Python-modules-commits
mailing list