Skip to content

Commit ad9ac1d

Browse files
v2.2.0 GA Release (#55)
* v2.2.0 GA Release Updated the Changelog and version * Adding v2-master branch to TravisCI * Updated TravisCI config to parity to master branch Co-authored-by: Majid Mallis <[email protected]>
1 parent 43b07f2 commit ad9ac1d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
branches:
22
only:
33
- master
4+
- v2-master
45
language: python
56
python:
67
- "2.7"
7-
- "3.6"
8-
- "nightly" # points to the latest development branch e.g. 3.6-dev
8+
- "3.7"
9+
- "nightly" # points to the latest development branch e.g. 3.7-dev
910
# command to install dependencies
1011
install:
1112
- pip install -r requirements.txt
1213
- pip install -r test-requirements.txt
1314
# command to run tests
1415
script: nosetests -s
16+
matrix:
17+
allow_failures:
18+
- python: nightly # Allow all tests to fail for nightly

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.2.0] - eSignature API v2-19.4.01 - 2020-02-10
7+
### Fixed
8+
* A bug in deserialize file with the same name, if downloaded multiple times on different thread or during parallel processing, wrong files are overwritten or served. (DCM-3631)
9+
* Unit test updated to handle delays in moving Envelopes.
10+
611
## [2.2.0rc2] - eSignature API v2-19.4.01 - 2019-12-31
712
### Fixed
813
* A bug in deserialize file with the same name, if downloaded multiple times on different thread or during parallel processing, wrong files are overwritten or served. (DCM-3631)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from setuptools import setup, find_packages, Command
1717

1818
NAME = "docusign_esign"
19-
VERSION = "2.2.0rc2"
19+
VERSION = "2.2.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

0 commit comments

Comments
 (0)