Skip to content

Commit

Permalink
Version 3.18.1-v2.1-22.3.00.00 release (#156)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
harsharahul and root authored Oct 26, 2022
1 parent 3b9d401 commit fd2b523
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ 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.

## [v3.18.1] - eSignature API v2.1-22.3.00.00 - 2022-10-25
### Changed
- Added support for version v2.1-22.3.00.00 of the DocuSign ESignature API.
- Updated the SDK release version.
### Fixed
- Setup.py version limitation for PyJwt removed

## [v3.18.0] - eSignature API v2.1-22.3.00.00 - 2022-09-07
### Changed
- Added support for version v2.1-22.3.00.00 of the DocuSign ESignature API.
Expand Down
2 changes: 1 addition & 1 deletion docusign_esign/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,4 +526,4 @@
from docusign_esign.models.date import Date


configuration = Configuration()
configuration = Configuration()
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
from setuptools import setup, find_packages, Command, os # noqa: H301

NAME = "docusign-esign"
VERSION = "3.18.0"
VERSION = "3.18.1"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

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"]
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"]

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

0 comments on commit fd2b523

Please sign in to comment.