Skip to content

Commit cfbbdf4

Browse files
garg-muditroot
andauthored
Version 2.0.0-v2.1-1.4.1 release (#16)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 2a2100e commit cfbbdf4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ 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+
## [v2.0.0] - Admin API v2.1-1.4.1 - 2024-10-28
7+
### Changed
8+
- Added support for version v2.1-1.4.1 of the DocuSign Admin API.
9+
- Removed the staging base path and OAuth path constant.
10+
- Updated the SDK release version.
11+
612
## [v2.0.0rc2] - Admin API v2.1-1.4.1 - 2024-10-22
713
### Changed
814
- Added support for version v2.1-1.4.1 of the DocuSign Admin API.

docusign_admin/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/2.0.0rc2/python3/" + f"{python_version}"
119+
self.user_agent = "Swagger-Codegen/v2.1/2.0.0/python3/" + f"{python_version}"
120120
else:
121-
self.user_agent = "Swagger-Codegen/v2.1/2.0.0rc2/python2/" + f"{python_version}"
121+
self.user_agent = "Swagger-Codegen/v2.1/2.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: 2.0.0rc2".\
277+
"SDK Package Version: 2.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-admin"
17-
VERSION = "2.0.0rc2"
17+
VERSION = "2.0.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)