diff --git a/.changes/0.10.2.json b/.changes/0.10.2.json new file mode 100644 index 00000000..922b3e94 --- /dev/null +++ b/.changes/0.10.2.json @@ -0,0 +1,7 @@ +[ + { + "category": "``awscrt``", + "description": "Pass operation name to awscrt.s3 to improve error handling.", + "type": "bugfix" + } +] \ No newline at end of file diff --git a/.changes/next-release/bugfix-awscrt-54174.json b/.changes/next-release/bugfix-awscrt-54174.json deleted file mode 100644 index f8eca6a0..00000000 --- a/.changes/next-release/bugfix-awscrt-54174.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "``awscrt``", - "description": "Pass operation name to awscrt.s3 to improve error handling." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 07d09a83..c8f12ef3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +0.10.2 +====== + +* bugfix:``awscrt``: Pass operation name to awscrt.s3 to improve error handling. + + 0.10.1 ====== diff --git a/s3transfer/__init__.py b/s3transfer/__init__.py index 4ada4a89..e54e4ebd 100644 --- a/s3transfer/__init__.py +++ b/s3transfer/__init__.py @@ -144,7 +144,7 @@ def __call__(self, bytes_amount): from s3transfer.exceptions import RetriesExceededError, S3UploadFailedError __author__ = 'Amazon Web Services' -__version__ = '0.10.1' +__version__ = '0.10.2' class NullHandler(logging.Handler):