Skip to content

Commit

Permalink
Bumping version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Nov 27, 2023
1 parent 51929aa commit 7f20084
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 26 deletions.
27 changes: 27 additions & 0 deletions .changes/0.8.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``crt``",
"description": "Automatically configure CRC32 checksums for uploads and checksum validation for downloads through the CRT transfer manager.",
"type": "enhancement"
},
{
"category": "``crt``",
"description": "S3transfer now supports a wider range of CRT functionality for uploads to improve throughput in the CLI/Boto3.",
"type": "feature"
},
{
"category": "``Botocore``",
"description": "S3Transfer now requires Botocore >=1.32.7",
"type": "enhancement"
},
{
"category": "``crt``",
"description": "Update ``target_throughput`` defaults. If not configured, s3transfer will use the AWS CRT to attempt to determine a recommended target throughput to use based on the system. If there is no recommended throughput, s3transfer now falls back to ten gigabits per second.",
"type": "enhancement"
},
{
"category": "``crt``",
"description": "Add support for uploading and downloading file-like objects using CRT transfer manager. It supports both seekable and non-seekable file-like objects.",
"type": "enhancement"
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/enhancement-Botocore-82899.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/enhancement-crt-28261.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/enhancement-crt-30257.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/enhancement-crt-51520.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/next-release/feature-crt-5777.json

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

0.8.0
=====

* enhancement:``crt``: Automatically configure CRC32 checksums for uploads and checksum validation for downloads through the CRT transfer manager.
* feature:``crt``: S3transfer now supports a wider range of CRT functionality for uploads to improve throughput in the CLI/Boto3.
* enhancement:``Botocore``: S3Transfer now requires Botocore >=1.32.7
* enhancement:``crt``: Update ``target_throughput`` defaults. If not configured, s3transfer will use the AWS CRT to attempt to determine a recommended target throughput to use based on the system. If there is no recommended throughput, s3transfer now falls back to ten gigabits per second.
* enhancement:``crt``: Add support for uploading and downloading file-like objects using CRT transfer manager. It supports both seekable and non-seekable file-like objects.


0.7.0
=====

Expand Down
2 changes: 1 addition & 1 deletion s3transfer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __call__(self, bytes_amount):
from s3transfer.exceptions import RetriesExceededError, S3UploadFailedError

__author__ = 'Amazon Web Services'
__version__ = '0.7.0'
__version__ = '0.8.0'


class NullHandler(logging.Handler):
Expand Down

0 comments on commit 7f20084

Please sign in to comment.