diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e099b66..aa92619 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.2 +------ + * Removed functions and documentation for APIs that have been removed + * Documentation is now vastly improved thanks to @lydia / girlsim + * Rate limiting code - Mastodon.py can now attempt to respect rate limits + * Several small bug fixes, consistency fixes, quality-of-life improvements + v.1.0.1 ------- * Added timeline_*() functions for consistency. timeline() functions as before. @@ -9,5 +16,4 @@ v.1.0.1 v.1.0.0 ------- - * Initial Release diff --git a/docs/conf.py b/docs/conf.py index a893c03..1c59aeb 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.1' +release = u'1.0.2' # 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 2e7df36..6cd10ea 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='Mastodon.py', - version='1.0.1', + version='1.0.2', description='Python wrapper for the Mastodon API', packages=['mastodon'], install_requires=['requests', 'dateutils'],