Skip to content

Commit 08d5c74

Browse files
author
Majid Mallis
committed
Release version 1.0.3
1 parent 2bbd373 commit 08d5c74

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for
77
### Changed
88
- Updated the package with the latest API monthly release.
99

10+
## [1.0.3] - 2018-03-22
11+
### Fixed
12+
- Issue [`#7`](https://github.com/docusign/docusign-python-client/issues/7): TypeError: the JSON object must be str, not 'bytes'.
13+
- PR [`#8`](https://github.com/docusign/docusign-python-client/pull/8): Ensure closure of private key file to prevent open handles. Allow key bytes to be supplied to JWT configure method.
14+
- PR [`#9`](https://github.com/docusign/docusign-python-client/pull/9): Support for cross-version json parsing of response.
15+
16+
## [1.0.2] - 2017-12-05
17+
### Fixed
18+
- PR [`#6`](https://github.com/docusign/docusign-python-client/pull/6): Invalid Grant URI at get_jwt_uri().
19+
20+
## [1.0.1] - 2017-09-05
21+
### Added
22+
- Added OAuth support.
23+
1024
## [1.0.0] - 2017-08-08
1125
### Added
1226
- Initial commit of the new Python SDK for DocuSign API, automatically generated from OpenAPI specification.

docusign_esign/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,5 +215,5 @@ def to_debug_report(self):
215215
"OS: {env}\n"\
216216
"Python Version: {pyversion}\n"\
217217
"Version of the API: v2\n"\
218-
"SDK Package Version: 1.0.0".\
218+
"SDK Package Version: 1.0.3".\
219219
format(env=sys.platform, pyversion=sys.version)

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 = "1.0.2"
19+
VERSION = "1.0.3"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

0 commit comments

Comments
 (0)