Skip to content

Commit

Permalink
Version 3.26.0-v2.1-23.4.02.00 release (#185)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
asif-docusign and root authored Apr 30, 2024
1 parent 71f3ecd commit 502359a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.

See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v3.26.0] - eSignature API v2.1-23.4.02.00 - 2024-04-30
### Changed
- Revised the logic to determine the `oauth_host_name` based on the `base_path`.
- Adjusted the minimum required `PyJWT` package version to `2.0.0`.
- Added support for version v2.1-23.4.02.00 of the DocuSign ESignature API.
- Updated the SDK release version.

## [v3.26.0rc1] - eSignature API v2.1-23.4.02.00 - 2024-03-12
### Changed
- Added support for version v2.1-23.4.02.00 of the DocuSign ESignature API.
Expand Down
6 changes: 3 additions & 3 deletions docusign_esign/client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ def __init__(self):
python_version = platform.python_version()

if six.PY3:
self.user_agent = "Swagger-Codegen/v2.1/3.26.0rc1/python3/" + f"{python_version}"
self.user_agent = "Swagger-Codegen/v2.1/3.26.0/python3/" + f"{python_version}"
else:
self.user_agent = "Swagger-Codegen/v2.1/3.26.0rc1/python2/" + f"{python_version}"
self.user_agent = "Swagger-Codegen/v2.1/3.26.0/python2/" + f"{python_version}"


@classmethod
Expand Down Expand Up @@ -277,5 +277,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v2.1\n"\
"SDK Package Version: 3.26.0rc1".\
"SDK Package Version: 3.26.0".\
format(env=sys.platform, pyversion=sys.version)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from setuptools import setup, find_packages, Command, os # noqa: H301

NAME = "docusign-esign"
VERSION = "3.26.0rc1"
VERSION = "3.26.0"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 502359a

Please sign in to comment.