Skip to content

Commit 502359a

Browse files
asif-docusignroot
andauthored
Version 3.26.0-v2.1-23.4.02.00 release (#185)
Co-authored-by: root <[email protected]>
1 parent 71f3ecd commit 502359a

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
33

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

6+
## [v3.26.0] - eSignature API v2.1-23.4.02.00 - 2024-04-30
7+
### Changed
8+
- Revised the logic to determine the `oauth_host_name` based on the `base_path`.
9+
- Adjusted the minimum required `PyJWT` package version to `2.0.0`.
10+
- Added support for version v2.1-23.4.02.00 of the DocuSign ESignature API.
11+
- Updated the SDK release version.
12+
613
## [v3.26.0rc1] - eSignature API v2.1-23.4.02.00 - 2024-03-12
714
### Changed
815
- Added support for version v2.1-23.4.02.00 of the DocuSign ESignature API.

docusign_esign/client/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ def __init__(self):
119119
python_version = platform.python_version()
120120

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

126126

127127
@classmethod
@@ -277,5 +277,5 @@ def to_debug_report(self):
277277
"OS: {env}\n"\
278278
"Python Version: {pyversion}\n"\
279279
"Version of the API: v2.1\n"\
280-
"SDK Package Version: 3.26.0rc1".\
280+
"SDK Package Version: 3.26.0".\
281281
format(env=sys.platform, pyversion=sys.version)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages, Command, os # noqa: H301
1515

1616
NAME = "docusign-esign"
17-
VERSION = "3.26.0rc1"
17+
VERSION = "3.26.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)