Skip to content

Commit fd2b523

Browse files
harsharahulroot
andauthored
Version 3.18.1-v2.1-22.3.00.00 release (#156)
Co-authored-by: root <[email protected]>
1 parent 3b9d401 commit fd2b523

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
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.18.1] - eSignature API v2.1-22.3.00.00 - 2022-10-25
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+
- Setup.py version limitation for PyJwt removed
12+
613
## [v3.18.0] - eSignature API v2.1-22.3.00.00 - 2022-09-07
714
### Changed
815
- Added support for version v2.1-22.3.00.00 of the DocuSign ESignature API.

docusign_esign/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,4 +526,4 @@
526526
from docusign_esign.models.date import Date
527527

528528

529-
configuration = Configuration()
529+
configuration = Configuration()

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
from setuptools import setup, find_packages, Command, os # noqa: H301
1515

1616
NAME = "docusign-esign"
17-
VERSION = "3.18.0"
17+
VERSION = "3.18.1"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install
2121
#
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424

25-
REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1,<2", "cryptography>=2.5", "nose>=1.3.7"]
25+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"]
2626

2727
class CleanCommand(Command):
2828
"""Custom clean command to tidy up the project root."""

0 commit comments

Comments
 (0)