Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ 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.

## [2.5.0] - eSignature API v2-20.2.00 - 2020-07-09
### Changed
* Added support for version v2-20.2.00 of the DocuSign eSignature API.
* Updated the SDK release version.
* Updated/added properties for bulk update call

## [2.4.0] - eSignature API v2-20.1.02 - 2020-06-02
### Changed
* Added support for version v2.1-20.1.02 of the DocuSign eSignature API.
Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
"""


import sys
from setuptools import setup, find_packages
from setuptools import setup, find_packages, Command, os # noqa: H301

NAME = "docusign_esign"
VERSION = "2.5.0rc1"
VERSION = "2.5.0"
# To install the library, run the following
#
# python setup.py install
Expand All @@ -25,6 +24,16 @@

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."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')

setup(
name=NAME,
version=VERSION,
Expand Down