From 81657cf7a81e43ff048a60edb12e15ccb2d7d84c Mon Sep 17 00:00:00 2001 From: Harsha Rahul Boggaram Date: Fri, 21 Aug 2020 14:32:47 -0700 Subject: [PATCH] Version v3.5.0 release (#86) * Version v3.5.0-v2.1-20.2.02.02 release * Update .travis.yml * Update README.md Co-authored-by: DevCenter-DocuSign --- CHANGELOG.md | 6 ++++++ setup.py | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acaae2c2..4c1100d5 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. +## [3.5.0] - eSignature API v2.1-20.2.02.02 - 2020-08-21 +### Changed +* Added support for version v2.1-20.2.02.02 of the DocuSign eSignature API. +* Updated the SDK release version. +* Updated/added properties for bulk send & advanced recipient routing. + ## [3.4.0] - eSignature API v2.1-20.2.00 - 2020-07-09 ### Changed * Added support for version v2.1-20.2.00 of the DocuSign eSignature API. diff --git a/setup.py b/setup.py index 2eab554c..9b794dd7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup, find_packages, Command, os # noqa: H301 NAME = "docusign-esign" -VERSION = "3.5.0rc1" +VERSION = "3.5.0" # To install the library, run the following # # python setup.py install @@ -44,8 +44,8 @@ def run(self): install_requires=REQUIRES, packages=find_packages(), include_package_data=True, - cmdclass={ - 'clean': CleanCommand, + cmdclass={ + 'clean': CleanCommand, }, long_description="""\ The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501