Skip to content

Commit 5ab9194

Browse files
Merge branch 'release-1.18.49'
* release-1.18.49: Bumping version to 1.18.49 Add changelog entries from botocore Add support for Python 3.10 (#3009)
2 parents fb82bde + db3460e commit 5ab9194

File tree

7 files changed

+49
-5
lines changed

7 files changed

+49
-5
lines changed

.changes/1.18.49.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``appintegrations``",
4+
"description": "[``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``wisdom``",
9+
"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.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``pinpoint``",
14+
"description": "[``botocore``] Added support for journey with contact center activity",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``voice-id``",
19+
"description": "[``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``connect``",
24+
"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.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``elbv2``",
29+
"description": "[``botocore``] Update elbv2 client to latest version",
30+
"type": "api-change"
31+
}
32+
]

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8, 3.9]
16+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
1717
os: [ubuntu-latest, macOS-latest, windows-latest ]
1818

1919
steps:

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
CHANGELOG
33
=========
44

5+
1.18.49
6+
=======
7+
8+
* api-change:``appintegrations``: [``botocore``] The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
9+
* 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.
10+
* api-change:``pinpoint``: [``botocore``] Added support for journey with contact center activity
11+
* api-change:``voice-id``: [``botocore``] Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.
12+
* 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.
13+
* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version
14+
15+
516
1.18.48
617
=======
718

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.18.48'
21+
__version__ = '1.18.49'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.21.48,<1.22.0
6+
botocore>=1.21.49,<1.22.0
77
jmespath>=0.7.1,<1.0.0
88
s3transfer>=0.5.0,<0.6.0
99

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
requires = [
16-
'botocore>=1.21.48,<1.22.0',
16+
'botocore>=1.21.49,<1.22.0',
1717
'jmespath>=0.7.1,<1.0.0',
1818
's3transfer>=0.5.0,<0.6.0'
1919
]
@@ -54,6 +54,7 @@ def get_version():
5454
'Programming Language :: Python :: 3.7',
5555
'Programming Language :: Python :: 3.8',
5656
'Programming Language :: Python :: 3.9',
57+
'Programming Language :: Python :: 3.10',
5758
],
5859
project_urls={
5960
'Documentation': 'https://boto3.amazonaws.com/v1/documentation/api/latest/index.html',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39
2+
envlist = py36,py37,py38,py39,py310
33

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

0 commit comments

Comments
 (0)