Skip to content

Commit

Permalink
Merge branch 'release-1.5.0'
Browse files Browse the repository at this point in the history
* release-1.5.0: (22 commits)
  Bumping version to 1.5.0
  Update CHANGELOG with new entries
  Update comment with a better explanation of the error tests
  Add error integration tests
  Update CLI to work with normalized botocore models
  Cut down memory use in stream testing
  Incorporated feedback on stream tests.
  Fixed too much memory usage for s3 streaming
  Updated changelog entry.
  Default s3 streaming to --only-show-errors
  Cleaned up the streaming code.
  Cut down memory usage to mutipart upload a stream.
  Added the ability to stream data using ``cp``.
  Updated changelog with latest feature.
  Improved s3 output testing.
  Added a ``--only-show-errors`` argument.
  Cleaned up ``print_thread`` code.
  Errors and warnings are printed to stderr.
  Add issue #847 to the changelog
  Incorporate review feedback.
  ...
  • Loading branch information
jamesls committed Oct 6, 2014
2 parents 68d61c1 + 80e5e04 commit 248ab95
Show file tree
Hide file tree
Showing 105 changed files with 3,393 additions and 1,581 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
CHANGELOG
=========

1.5.0
=====

* bugfix:Response Parsing: Fix response parsing so that leading
and trailing spaces are preserved
* feature:Shared Credentials File: The ``aws configure`` and
``aws configure set`` command now write out all credential
variables to the shared credentials file ``~/.aws/credentials``
(`issue 847 <https://github.com/aws/aws-cli/issues/847>`__)
* bugfix:``aws s3``: Write warnings and errors to standard error as
opposed to standard output.
(`issue 919 <https://github.com/aws/aws-cli/pull/919>`__)
* feature:``aws s3``: Add ``--only-show-errors`` option that displays
errors and warnings but suppresses all other output.
* feature:``aws s3 cp``: Added ability to upload local
file streams from standard input to s3 and download s3
objects as local file streams to standard output.
(`issue 903 <https://github.com/aws/aws-cli/pull/903>`__)


1.4.4
=====

Expand All @@ -12,7 +32,7 @@ CHANGELOG
=====

* feature:``aws iam``: Update ``aws iam`` command to latest version.
* feature:``aws cognito-sync``: Update ``aws cognito-sync`` command
* feature:``aws cognito-sync``: Update ``aws cognito-sync`` command
to latest version.
* feature:``aws opsworks``: Update ``aws opsworks`` command to latest
version.
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.4.4'
__version__ = '1.5.0'

#
# Get our data path to be added to botocore's search path
Expand Down
Loading

0 comments on commit 248ab95

Please sign in to comment.