Skip to content

Commit

Permalink
Merge branch 'release-1.18.49'
Browse files Browse the repository at this point in the history
* release-1.18.49:
  Bumping version to 1.18.49
  Add changelog entries from botocore
  Add support for Python 3.10 (#3009)
  • Loading branch information
aws-sdk-python-automation committed Sep 27, 2021
2 parents fb82bde + db3460e commit 5ab9194
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 5 deletions.
32 changes: 32 additions & 0 deletions .changes/1.18.49.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``appintegrations``",
"description": "[``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.",
"type": "api-change"
},
{
"category": "``wisdom``",
"description": "[``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html.",
"type": "api-change"
},
{
"category": "``pinpoint``",
"description": "[``botocore``] Added support for journey with contact center activity",
"type": "api-change"
},
{
"category": "``voice-id``",
"description": "[``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "[``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom.",
"type": "api-change"
},
{
"category": "``elbv2``",
"description": "[``botocore``] Update elbv2 client to latest version",
"type": "api-change"
}
]
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
os: [ubuntu-latest, macOS-latest, windows-latest ]

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

1.18.49
=======

* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
* api-change:``wisdom``: [``botocore``] Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html.
* api-change:``pinpoint``: [``botocore``] Added support for journey with contact center activity
* api-change:``voice-id``: [``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.
* api-change:``connect``: [``botocore``] This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom.
* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version


1.18.48
=======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


__author__ = 'Amazon Web Services'
__version__ = '1.18.48'
__version__ = '1.18.49'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.21.48,<1.22.0
botocore>=1.21.49,<1.22.0
jmespath>=0.7.1,<1.0.0
s3transfer>=0.5.0,<0.6.0

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


requires = [
'botocore>=1.21.48,<1.22.0',
'botocore>=1.21.49,<1.22.0',
'jmespath>=0.7.1,<1.0.0',
's3transfer>=0.5.0,<0.6.0'
]
Expand Down Expand Up @@ -54,6 +54,7 @@ def get_version():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
project_urls={
'Documentation': 'https://boto3.amazonaws.com/v1/documentation/api/latest/index.html',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39
envlist = py36,py37,py38,py39,py310

# Comment to build sdist and install into virtualenv
# This is helpful to test installation but takes extra time
Expand Down

0 comments on commit 5ab9194

Please sign in to comment.