Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 10 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
*********

1.x.x -- 201x-xx-xx
1.4.0 -- 2019-05-23
===================

Minor
Expand All @@ -11,6 +11,15 @@ Minor
* Remove dependence on all ``source_stream`` APIs except for ``read()``.
`#103 <https://github.com/aws/aws-encryption-sdk-python/issues/103>`_

Potentially Breaking
^^^^^^^^^^^^^^^^^^^^

* Encryption streams no longer close the ``source_stream`` when they themselves close.
If you are using context managers for all of your stream handling,
this change will not affect you.
However, if you have been relying on this to close your ``source_stream`` for you,
you will now need to close those streams yourself.

Maintenance
-----------

Expand Down
2 changes: 1 addition & 1 deletion src/aws_encryption_sdk/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# We only actually need these imports when running the mypy checks
pass

__version__ = "1.3.8"
__version__ = "1.4.0"
USER_AGENT_SUFFIX = "AwsEncryptionSdkPython/{}".format(__version__)


Expand Down