Skip to content

Commit 45778d8

Browse files
IBMalokGitHub Enterprise
authored and
GitHub Enterprise
committed
Release 2.14.0
1 parent d45fb7f commit 45778d8

File tree

6 files changed

+25
-12
lines changed

6 files changed

+25
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## 2.14.0
4+
5+
### Content
6+
7+
#### Features
8+
9+
* Tag Based Filtering for Object Expiration
10+
11+
#### Defect Fixes
12+
13+
* Support for python 3.13
14+
315
## 2.13.6
416

517
### Content

ibm_boto3/__init__.py

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

2020

2121
__author__ = 'IBM'
22-
__version__ = '2.13.6'
22+
__version__ = '2.14.0'
2323

2424

2525
# The default Boto3 session; autoloaded when needed.

requirements-dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
wheel==0.43.0
2-
coverage==7.5.3
3-
setuptools==67.8.0;python_version>="3.12"
1+
wheel==0.45.1
2+
coverage==7.6.7
3+
setuptools==75.6.0;python_version>="3.12"
44

55
# Pytest specific deps
6-
pytest==7.4.4
7-
pytest-cov==4.1.0
6+
pytest==8.3.3
7+
pytest-cov==6.0.0
88
atomicwrites>=1.0 # Windows requirement
99
colorama>0.3.0 # Windows requirement

requirements-docs.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Sphinx does not have an upper bound pin on jinja2, and jinja2 does
22
# not have an upper bound pin on markupsafe. Since jinja2 and markupsafe
33
# removed python 3.5 support we need to add our own pins.
4-
markupsafe>=2.0,<3
4+
markupsafe>=2.1.5,<3
55
jinja2>=3.1.4,<4
6-
docutils>=0.10,<1
6+
docutils>=0.19<1
77
sphinx==5.3.0
88
guzzle_sphinx_theme>=0.7.11,<1
99
furo==2022.12.7

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
ibm-cos-sdk-core==2.13.6
7-
ibm-cos-sdk-s3transfer==2.13.6
6+
ibm-cos-sdk-core==2.14.0
7+
ibm-cos-sdk-s3transfer==2.14.0
88
jmespath>=0.10.0,<=1.0.1
99

1010
[flake8]

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010

1111
requires = [
12-
'ibm-cos-sdk-core==2.13.6',
13-
'ibm-cos-sdk-s3transfer==2.13.6',
12+
'ibm-cos-sdk-core==2.14.0',
13+
'ibm-cos-sdk-s3transfer==2.14.0',
1414
'jmespath>=0.10.0,<=1.0.1'
1515
]
1616

@@ -48,6 +48,7 @@ def get_version():
4848
'Programming Language :: Python :: 3.10',
4949
'Programming Language :: Python :: 3.11',
5050
'Programming Language :: Python :: 3.12',
51+
'Programming Language :: Python :: 3.13',
5152
],
5253
project_urls={
5354
'Documentation': 'https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-python',

0 commit comments

Comments
 (0)