Skip to content

Commit 7731f9c

Browse files
authored
Release/0.0.8 (#10)
1 parent cf2fe20 commit 7731f9c

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ python:
44
- "2.7"
55
- "3.6"
66
- "3.7"
7+
- "3.8"
8+
- "3.9"
79
script:
810
- pytest
911
deploy:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ dc = DomainConnect(
145145
## CHANGELOG
146146
| version | date | changes |
147147
| ------- | -----------| ------ |
148+
| 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail |
148149
| 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain |
149150
| 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) |
150151
| 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added |

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,21 @@
33
from setuptools import setup
44

55
setup(name='domain_connect',
6-
version='0.0.7',
6+
version='0.0.8',
77
description='Python client library for Domain Connect protocol. See: https://domainconnect.org',
88
long_description_content_type="text/markdown",
99
long_description=open('README.md').read(),
1010
author='Pawel Kowalik',
1111
author_email='pawel-kow@users.noreply.github.com',
1212
url='https://github.com/Domain-Connect/domainconnect_python',
1313
license='https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE',
14+
#python 3.5 failing in tests
1415
classifiers=[
1516
'Programming Language :: Python :: 2.7',
1617
'Programming Language :: Python :: 3.6',
18+
'Programming Language :: Python :: 3.7',
19+
'Programming Language :: Python :: 3.8',
20+
'Programming Language :: Python :: 3.9',
1721
],
1822
packages=[
1923
'domainconnect',

0 commit comments

Comments
 (0)