Version bump

This commit is contained in:
Lorenz Diener 2017-11-21 14:53:32 +01:00
parent 7771b27b72
commit dc4eec7289
4 changed files with 12 additions and 3 deletions

View file

@ -1,6 +1,15 @@
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.1.2
------
* 2.0 id compatibility (thanks codl)
* Media alt-text support (thanks foozmeat)
* Python2 fixes (thanks ragingscholar)
* General code cleanup and small fixes (thanks codl)
* Beginnings of better error handling (thanks Elizafox)
* Various documentation updates
v1.1.1
------
* Emergency fix to allow logging in to work (thanks codl)

View file

@ -68,7 +68,7 @@ author = u'Lorenz Diener'
# The short X.Y version.
version = u'1.1'
# The full version, including alpha/beta/rc tags.
release = u'1.1.1'
release = u'1.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -46,7 +46,7 @@ node running Mastodon by setting api_base_url when creating the
api object (or creating an app).
Mastodon.py aims to implement the complete public Mastodon API. As
of this time, it is feature complete for Mastodon version 2.0.
of this time, it is feature complete for Mastodon version 2.0.0.
A note about rate limits
------------------------

View file

@ -1,7 +1,7 @@
from setuptools import setup
setup(name='Mastodon.py',
version='1.1.1',
version='1.1.2',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
setup_requires=['pytest-runner'],