diff --git a/CHANGELOG.md b/CHANGELOG.md index 49128712..fbdc3ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/setup.py b/setup.py index e1b5e812..b2e20c2f 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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,