diff --git a/CHANGES.rst b/CHANGES.rst index 84da38f4..10090349 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ------- +1.0.5 (2020-06-03) +^^^^^^^^^^^^^^^^^^ +* Fixed AioSession.get_service_data emit call #811 via #812 +* Fixed async __getattr__ #789 via #803 + 1.0.4 (2020-04-15) ^^^^^^^^^^^^^^^^^^ * Fixed S3 Presigned Post not being async diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 82ff3eb6..a39376ea 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1,4 +1,4 @@ from .session import get_session, AioSession __all__ = ['get_session', 'AioSession'] -__version__ = '1.0.4' +__version__ = '1.0.5'