diff options
-rw-r--r-- | CHANGELOG.rst | 7 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e171629..58b8323 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -1,6 +1,13 @@ | |||
1 | A note on versioning: This librarys major version will grow with the APIs | 1 | A note on versioning: This librarys major version will grow with the APIs |
2 | version number. Breaking changes will be avoided as far as at all possible. | 2 | version number. Breaking changes will be avoided as far as at all possible. |
3 | 3 | ||
4 | v1.0.7 | ||
5 | ------ | ||
6 | * Added support for OAuth2 (Thanks to azillon) | ||
7 | * Added support for several new endpoints (Thanks phryk, aeonofdiscord, naoyat) | ||
8 | * Fixed various bugs (Thanks EliotBerriot, csu, edsu) | ||
9 | * Added support for streaming API (Thanks wjt) | ||
10 | |||
4 | v1.0.6 | 11 | v1.0.6 |
5 | ------ | 12 | ------ |
6 | * Fixed several bugs (Thanks to Psycojoker, wjt and wxcafe) | 13 | * 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' | |||
68 | # The short X.Y version. | 68 | # The short X.Y version. |
69 | version = u'1.0' | 69 | version = u'1.0' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'1.0.6' | 71 | release = u'1.0.7' |
72 | 72 | ||
73 | # The language for content autogenerated by Sphinx. Refer to documentation | 73 | # The language for content autogenerated by Sphinx. Refer to documentation |
74 | # for a list of supported languages. | 74 | # for a list of supported languages. |
@@ -1,7 +1,7 @@ | |||
1 | from setuptools import setup, find_packages | 1 | from setuptools import setup, find_packages |
2 | 2 | ||
3 | setup(name='Mastodon.py', | 3 | setup(name='Mastodon.py', |
4 | version='1.0.6', | 4 | version='1.0.7', |
5 | description='Python wrapper for the Mastodon API', | 5 | description='Python wrapper for the Mastodon API', |
6 | packages=['mastodon'], | 6 | packages=['mastodon'], |
7 | setup_requires=['pytest-runner'], | 7 | setup_requires=['pytest-runner'], |