Skip to content

Commit 9149303

Browse files
Merge branch 'release-1.40.33'
* release-1.40.33: Bumping version to 1.40.33 Update changelog based on model updates Ignored Hidden Files from example folder during test
2 parents 4852285 + 99b4a9c commit 9149303

File tree

7 files changed

+21
-5
lines changed

7 files changed

+21
-5
lines changed

.changes/1.40.33.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``gameliftstreams``",
4+
"description": "Documentation updates for Amazon GameLift Streams to address formatting errors, correct resource ID examples, and update links to other guides",
5+
"type": "api-change"
6+
}
7+
]

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
1.40.33
6+
=======
7+
8+
* api-change:``gameliftstreams``: Documentation updates for Amazon GameLift Streams to address formatting errors, correct resource ID examples, and update links to other guides
9+
10+
511
1.40.32
612
=======
713

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.40.32'
21+
__version__ = '1.40.33'
2222

2323
#
2424
# Get our data path to be added to botocore's search path

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.40.'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.40.32'
55+
release = '1.40.33'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.38.33
6+
botocore==1.38.34
77
docutils>=0.18.1,<=0.19
88
s3transfer>=0.13.0,<0.14.0
99
PyYAML>=3.10,<6.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.38.33',
27+
'botocore==1.38.34',
2828
'docutils>=0.18.1,<=0.19',
2929
's3transfer>=0.13.0,<0.14.0',
3030
'PyYAML>=3.10,<6.1',

tests/functional/docs/test_examples.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ def _get_all_doc_examples():
8484
for root, _, filenames in os.walk(EXAMPLES_DIR):
8585
for filename in filenames:
8686
full_path = os.path.join(root, filename)
87-
if not filename.endswith('.rst'):
87+
if filename.startswith('.'):
88+
# Ignore hidden files as it starts with "."
89+
continue
90+
if not filename.endswith('.rst'):
8891
other_doc_examples.append(full_path)
8992
continue
9093
rst_doc_examples.append(full_path)

0 commit comments

Comments
 (0)