From 857968f34e19191e0ae5771b3a62e450a180ad0e Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Wed, 15 Mar 2017 11:17:51 +0100 Subject: [PATCH] Preparing maint release --- CHANGELOG.rst | 4 ++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77315de..344616f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ 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.0.5 +------ + * Fixed previous fix (Thank you, @tylerb@mastodon.social) + v1.0.4 ------ * Fixed an app creation bug (Thank you, @tylerb@mastodon.social) diff --git a/docs/conf.py b/docs/conf.py index de28077..e372027 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.0' # 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 # for a list of supported languages. diff --git a/setup.py b/setup.py index 683a0f0..e9f79d3 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='Mastodon.py', - version='1.0.4', + version='1.0.5', description='Python wrapper for the Mastodon API', packages=['mastodon'], install_requires=['requests', 'dateutils'],