Preparing for release

pull/49/head 1.0.7
Lorenz Diener 2017-04-27 10:55:57 +02:00
rodzic d7256798b7
commit e00d480871
3 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -1,6 +1,13 @@
A note on versioning: This librarys major version will grow with the APIs
version number. Breaking changes will be avoided as far as at all possible.
v1.0.7
------
* Added support for OAuth2 (Thanks to azillon)
* Added support for several new endpoints (Thanks phryk, aeonofdiscord, naoyat)
* Fixed various bugs (Thanks EliotBerriot, csu, edsu)
* Added support for streaming API (Thanks wjt)
v1.0.6
------
* Fixed several bugs (Thanks to Psycojoker, wjt and wxcafe)

Wyświetl plik

@ -68,7 +68,7 @@ author = u'Lorenz Diener'
# The short X.Y version.
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.6'
release = u'1.0.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Wyświetl plik

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(name='Mastodon.py',
version='1.0.6',
version='1.0.7',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
setup_requires=['pytest-runner'],