Preparing maint release

This commit is contained in:
Lorenz Diener 2017-03-15 11:17:51 +01:00
pare 6a65a3143c
commit 857968f34e
S'han modificat 3 arxius amb 6 adicions i 2 eliminacions

Veure arxiu

@ -1,6 +1,10 @@
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.5
------
* Fixed previous fix (Thank you, @tylerb@mastodon.social)
v1.0.4 v1.0.4
------ ------
* Fixed an app creation bug (Thank you, @tylerb@mastodon.social) * Fixed an app creation bug (Thank you, @tylerb@mastodon.social)

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.4' release = u'1.0.5'
# 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.4', version='1.0.5',
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'],