Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ 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.

## [v5.0.0] - eSignature API v2.1-25.1.00.02 - 2025-04-24
### Changed
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.
- Updated the SDK release version.

## [v5.0.0rc3] - eSignature API v2.1-25.1.00.02 - 2025-04-04
### Changed
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
<a id="versionInformation"></a>
### Version Information
- **API version**: v2.1
- **Latest SDK version**: 5.0.0rc3
- **Latest SDK version**: 5.0.0

<a id="requirements"></a>
## Requirements
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 @@ -116,9 +116,9 @@ def __init__(self):
python_version = platform.python_version()

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


@classmethod
Expand Down Expand Up @@ -274,5 +274,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v2.1\n"\
"SDK Package Version: 5.0.0rc3".\
"SDK Package Version: 5.0.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 = "5.0.0rc3"
VERSION = "5.0.0"
# To install the library, run the following
#
# python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ def testListTabs(self):

tabs = envelopes_api.list_tabs(account_id=self.user_info.accounts[0].account_id,
envelope_id=created_envelope.envelope_id,
recipient_id=recipients.signers[1].recipient_id)
recipient_id=recipients.signers[2].recipient_id)
list_tabs = tabs.list_tabs

assert list_tabs is not None
Expand Down