Skip to content

Commit

Permalink
Release/0.0.8 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-kow authored Nov 9, 2020
1 parent cf2fe20 commit 7731f9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
script:
- pytest
deploy:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ dc = DomainConnect(
## CHANGELOG
| version | date | changes |
| ------- | -----------| ------ |
| 0.0.8 | 2020-11-09 | NEW FEATURE: Detailed information on access token request fail |
| 0.0.7 | 2019-10-29 | Bugfix: error when setting up .app domain |
| 0.0.6 | 2019-07-05 | UPDATE: moved from pycrypto to cryptography (due to know security issues) |
| 0.0.5 | 2019-03-12 | NEW FEATURE: url signing capability added |
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@
from setuptools import setup

setup(name='domain_connect',
version='0.0.7',
version='0.0.8',
description='Python client library for Domain Connect protocol. See: https://domainconnect.org',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
author='Pawel Kowalik',
author_email='[email protected]',
url='https://github.com/Domain-Connect/domainconnect_python',
license='https://github.com/Domain-Connect/domainconnect_python/blob/master/LICENSE',
#python 3.5 failing in tests
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=[
'domainconnect',
Expand Down

0 comments on commit 7731f9c

Please sign in to comment.