diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3be7ce5..a950db0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) diff --git a/docs/conf.py b/docs/conf.py index 5d1ac64..fc42a9c 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.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. diff --git a/docs/index.rst b/docs/index.rst index c74f8f6..14ec49f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 ------------------------ diff --git a/setup.py b/setup.py index d53b978..b51b7a7 100644 --- a/setup.py +++ b/setup.py @@ -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'],