Preparing release

This commit is contained in:
Lorenz Diener 2017-04-05 14:03:28 +02:00
pare ff627cde44
commit 853ae97dcc
S'han modificat 3 arxius amb 12 adicions i 3 eliminacions

Veure arxiu

@ -1,6 +1,15 @@
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.6
------
* Fixed several bugs (Thanks to Psycojoker, wjt and wxcafe)
* Added support for spoiler text (Thanks to Erin Congden)
* Added support for mute functionality (Thanks to Erin Congden)
* Added support for getting favourites (Thanks to Erin Congden)
* Added support for follow requests (Thanks to Erin Congden, again)
* Added MANIFEST.in to allow for conda packaging (Thanks, pmlandwehr)
v1.0.5 v1.0.5
------ ------
* Fixed previous fix (Thank you, @tylerb@mastodon.social) * Fixed previous fix (Thank you, @tylerb@mastodon.social)
@ -11,7 +20,7 @@ v1.0.4
v1.0.3 v1.0.3
------ ------
* Added support for toot privacy. * Added support for toot privacy (thanks fpietsche)
v1.0.2 v1.0.2
------ ------

Veure arxiu

@ -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.5' release = u'1.0.6'
# 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.

Veure arxiu

@ -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.5', version='1.0.6',
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'],