Preparing for 1.0.2 release

This commit is contained in:
Lorenz Diener 2016-11-26 00:11:22 +01:00
parent 6f923ad1f9
commit 8b80eea862
3 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,13 @@
A note on versioning: This librarys major version will grow with the APIs 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. 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 v.1.0.1
------- -------
* Added timeline_*() functions for consistency. timeline() functions as before. * Added timeline_*() functions for consistency. timeline() functions as before.
@ -9,5 +16,4 @@ v.1.0.1
v.1.0.0 v.1.0.0
------- -------
* Initial Release * Initial Release

View File

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

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup(name='Mastodon.py', setup(name='Mastodon.py',
version='1.0.1', version='1.0.2',
description='Python wrapper for the Mastodon API', description='Python wrapper for the Mastodon API',
packages=['mastodon'], packages=['mastodon'],
install_requires=['requests', 'dateutils'], install_requires=['requests', 'dateutils'],