diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e171629..58b8323 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) diff --git a/docs/conf.py b/docs/conf.py index 5522a76..da413f2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/setup.py b/setup.py index 7f1401b..30949a5 100644 --- a/setup.py +++ b/setup.py @@ -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'],