Skip to content

Commit

Permalink
Version 2.5.0 release (#81)
Browse files Browse the repository at this point in the history
* Version 2.5.0-v2-20.2.00 release

* Reverting travis changes

Co-authored-by: automation <[email protected]>
Co-authored-by: Harsha Rahul Boggaram <[email protected]>
  • Loading branch information
3 people authored Jul 10, 2020
1 parent 4707c98 commit a7653ff
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
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

0 comments on commit a7653ff

Please sign in to comment.