Skip to content

Commit

Permalink
Merge branch 'release-1.7.15' into develop
Browse files Browse the repository at this point in the history
* release-1.7.15:
  Bumping version to 1.7.15
  Update Changelog with bugfixes and features
  Improved docs for ICMP port ranges
  Add debug log that records initial CLI input
  • Loading branch information
AWS committed Mar 19, 2015
2 parents 5ce0000 + b87e536 commit abbff5f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
CHANGELOG
=========

Next Release (TBD)
==================
1.7.15
======

* feature:``aws elastictranscoder``: Add support for Applied Color
SpaceConversion.
* bugfix:``aws --profile``: Fix issue where explicitly specifying profile
did not override credential environment variables.
(`botocore issue 486 <https://github.com/boto/botocore/pull/486>`__)
* bugfix:``aws datapipeline list-runs``: Fix issue with
``--schedule-interval`` parameter.
(`issue 1225 <https://github.com/aws/aws-cli/pull/1225>`__)
Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
import os

__version__ = '1.7.14'
__version__ = '1.7.15'

#
# Get our data path to be added to botocore's search path
Expand Down
2 changes: 2 additions & 0 deletions awscli/clidriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ def _handle_top_level_args(self, args):
LOG.debug("CLI version: %s, botocore version: %s",
self.session.user_agent(),
botocore_version)
LOG.debug("Arguments entered to CLI: %s", sys.argv[1:])

else:
self.session.set_stream_logger(logger_name='awscli',
log_level=logging.ERROR)
Expand Down
10 changes: 7 additions & 3 deletions awscli/customizations/ec2secgroupsimplify.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,13 @@ def _add_docs(help_command, **kwargs):
'<p>Valid protocol values: <code>tcp</code>, '
'<code>udp</code>, <code>icmp</code></p>')
PORT_DOCS = ('<p>For TCP or UDP: The range of ports to allow.'
' A single integer or a range (min-max). A value of '
'<code>-1</code> indicates all ICMP codes for the '
'specified ICMP type.</p>')
' A single integer or a range (<code>min-max</code>).</p>'
'<p>For ICMP: A single integer or a range (<code>type-code</code>)'
' representing the ICMP type'
' number and the ICMP code number respectively.'
' A value of -1 indicates all ICMP codes for'
' all ICMP types. A value of -1 just for <code>type</code>'
' indicates all ICMP codes for the specified ICMP type.</p>')
CIDR_DOCS = '<p>The CIDR IP range.</p>'
SOURCEGROUP_DOCS = ('<p>The name or ID of the source security group. '
'Cannot be used when specifying a CIDR IP address.')
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.7.'
# The full version, including alpha/beta/rc tags.
release = '1.7.14'
release = '1.7.15'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import awscli


requires = ['botocore>=0.95.0,<0.96.0',
requires = ['botocore>=0.96.0,<0.97.0',
'bcdoc>=0.13.0,<0.14.0',
'colorama>=0.2.5,<=0.3.3',
'docutils>=0.10',
Expand Down

0 comments on commit abbff5f

Please sign in to comment.