Skip to content

Commit a7653ff

Browse files
harsharahulautomation
andauthored
Version 2.5.0 release (#81)
* Version 2.5.0-v2-20.2.00 release * Reverting travis changes Co-authored-by: automation <automation@docusign.com> Co-authored-by: Harsha Rahul Boggaram <harsharahul.boggaram@docusign.com>
1 parent 4707c98 commit a7653ff

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ 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+
## [2.5.0] - eSignature API v2-20.2.00 - 2020-07-09
7+
### Changed
8+
* Added support for version v2-20.2.00 of the DocuSign eSignature API.
9+
* Updated the SDK release version.
10+
* Updated/added properties for bulk update call
11+
612
## [2.4.0] - eSignature API v2-20.1.02 - 2020-06-02
713
### Changed
814
* Added support for version v2.1-20.1.02 of the DocuSign eSignature API.

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@
1111
"""
1212

1313

14-
import sys
15-
from setuptools import setup, find_packages
14+
from setuptools import setup, find_packages, Command, os # noqa: H301
1615

1716
NAME = "docusign_esign"
18-
VERSION = "2.5.0rc1"
17+
VERSION = "2.5.0"
1918
# To install the library, run the following
2019
#
2120
# python setup.py install
@@ -25,6 +24,16 @@
2524

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

27+
class CleanCommand(Command):
28+
"""Custom clean command to tidy up the project root."""
29+
user_options = []
30+
def initialize_options(self):
31+
pass
32+
def finalize_options(self):
33+
pass
34+
def run(self):
35+
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
36+
2837
setup(
2938
name=NAME,
3039
version=VERSION,

0 commit comments

Comments
 (0)