Skip to content

Commit

Permalink
DXE-4304 Update version
Browse files Browse the repository at this point in the history
Merge in DEVEXP/akamaiopen-edgegrid-python from feature/release_changelog to develop
  • Loading branch information
artbookspirit committed Nov 6, 2024
1 parent 92c96a1 commit 1d8e24e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
History
-------

X.X.X (X-X-X)
2.0.0 (2024-11-12)
++++++++++++++++++

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

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

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

1.3.1 (2022-09-22)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion akamai/edgegrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
__all__ = ['EdgeGridAuth', 'EdgeRc']

__title__ = 'edgegrid-python'
__version__ = '1.3.1'
__version__ = '2.0.0'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2024 Akamai Technologies'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='edgegrid-python',
version='1.3.1',
version='2.0.0',
description='{OPEN} client authentication protocol for python-requests',
url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
namespace_packages=['akamai'],
Expand All @@ -27,7 +27,6 @@
license='Apache 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
)

0 comments on commit 1d8e24e

Please sign in to comment.