Skip to content

Commit 71c1048

Browse files
aditicodessroot
andauthored
Version 5.0.0-v2.1-25.1.00.02 release (#197)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent d9714ca commit 71c1048

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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+
## [v5.0.0] - eSignature API v2.1-25.1.00.02 - 2025-04-24
7+
### Changed
8+
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
611
## [v5.0.0rc3] - eSignature API v2.1-25.1.00.02 - 2025-04-04
712
### Changed
813
- Added support for version v2.1-25.1.00.02 of the DocuSign ESignature API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
3333
<a id="versionInformation"></a>
3434
### Version Information
3535
- **API version**: v2.1
36-
- **Latest SDK version**: 5.0.0rc3
36+
- **Latest SDK version**: 5.0.0
3737

3838
<a id="requirements"></a>
3939
## Requirements

docusign_esign/client/configuration.py

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

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

123123

124124
@classmethod
@@ -274,5 +274,5 @@ def to_debug_report(self):
274274
"OS: {env}\n"\
275275
"Python Version: {pyversion}\n"\
276276
"Version of the API: v2.1\n"\
277-
"SDK Package Version: 5.0.0rc3".\
277+
"SDK Package Version: 5.0.0".\
278278
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 = "5.0.0rc3"
17+
VERSION = "5.0.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

test/unit_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ def testListTabs(self):
774774

775775
tabs = envelopes_api.list_tabs(account_id=self.user_info.accounts[0].account_id,
776776
envelope_id=created_envelope.envelope_id,
777-
recipient_id=recipients.signers[1].recipient_id)
777+
recipient_id=recipients.signers[2].recipient_id)
778778
list_tabs = tabs.list_tabs
779779

780780
assert list_tabs is not None

0 commit comments

Comments
 (0)