Skip to content

Commit 1d8e24e

Browse files
committed
DXE-4304 Update version
Merge in DEVEXP/akamaiopen-edgegrid-python from feature/release_changelog to develop
1 parent 92c96a1 commit 1d8e24e

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

HISTORY.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
History
44
-------
55

6-
X.X.X (X-X-X)
6+
2.0.0 (2024-11-12)
77
++++++++++++++++++
88

99
* Breaking changes
1010
- discontinue support for Python 2.7, the minimum supported version is now Python 3.9
1111
- the ``__init__`` function of ``EdgeGridAuth`` and ``EdgeGridAuthHeaders`` now accepts ``headers_to_sign`` and ``max_body`` as keyword-only arguments
12-
- changed signatures of following methods in the ``EdgeGridAuthHeaders`` class: ``make_auth_header``, ``sign_request`` and ``make_data_to_sign``
12+
- change signatures of these methods in the ``EdgeGridAuthHeaders`` class: ``make_auth_header``, ``sign_request`` and ``make_data_to_sign``
1313

1414
* Improvements
1515
- update several dependencies in ``setup.py``
1616
- start generating files ``requirements.txt`` and ``dev-requirements.txt`` using ``pip-compile``,
1717
so that they contain the full set of project dependencies
1818

1919
* Bug fixes
20-
- properly handle file objects in the request body in EdgeGridAuth
20+
- fix handling file objects in the request body for ``EdgeGridAuth``
2121

2222
1.3.1 (2022-09-22)
2323
++++++++++++++++++

akamai/edgegrid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
__all__ = ['EdgeGridAuth', 'EdgeRc']
3737

3838
__title__ = 'edgegrid-python'
39-
__version__ = '1.3.1'
39+
__version__ = '2.0.0'
4040
__license__ = 'Apache 2.0'
4141
__copyright__ = 'Copyright 2024 Akamai Technologies'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='edgegrid-python',
5-
version='1.3.1',
5+
version='2.0.0',
66
description='{OPEN} client authentication protocol for python-requests',
77
url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
88
namespace_packages=['akamai'],
@@ -27,7 +27,6 @@
2727
license='Apache 2.0',
2828
classifiers=[
2929
'License :: OSI Approved :: Apache Software License',
30-
'Programming Language :: Python :: 2.7',
3130
'Programming Language :: Python :: 3',
3231
]
3332
)

0 commit comments

Comments
 (0)