Skip to content

Commit 50ac3e0

Browse files
authored
Merge pull request #5 from docusign/1.1.1-v2.1-1.1.0
Version 1.1.1 release
2 parents 867e39b + d482d3d commit 50ac3e0

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

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+
## [v1.1.1] - Admin API v2.1-1.1.0 - 2022-09-20
7+
### Changed
8+
- Added support for version v2.1-22.3.00.00 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
### Fixed
11+
- Fixed missing client side validation flag.
12+
613
## [v1.1.0] - Admin API v2.1-1.1.0 - 2022-04-26
714
### Changed
815
- Added support for version v2.1-1.1.0 of the DocuSign Admin API.

docusign_admin/client/configuration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ def __init__(self):
8989
# client key file
9090
self.key_file = None
9191

92+
self.client_side_validation = True
93+
9294
if PY3:
9395
self.user_agent = 'Swagger-Codegen/v2.1/1.1.0/python3'
9496
else:

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 = "1.1.0"
17+
VERSION = "1.1.1"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)