Bump version

This commit is contained in:
Lorenz Diener 2019-05-11 12:59:58 +02:00
pare b4c26febc8
commit 03c4ca8a5b
S'han modificat 3 arxius amb 6 adicions i 2 eliminacions

Veure arxiu

@ -2,6 +2,10 @@ A note on versioning: This librarys major version will grow with the APIs
version number. Breaking changes will be indicated by a change in the minor version number. Breaking changes will be indicated by a change in the minor
(or major) version number, and will generally be avoided. (or major) version number, and will generally be avoided.
v1.4.2
------
* Fixed date parsing in hashtag dicts.
v1.4.1 v1.4.1
------ ------
* Fixed search not working on Mastodon versions before 2.8.0. search now dynamically selects search_v1 or search_v2 and adjusts valid parameters depending on the detected Mastodon version. * Fixed search not working on Mastodon versions before 2.8.0. search now dynamically selects search_v1 or search_v2 and adjusts valid parameters depending on the detected Mastodon version.

Veure arxiu

@ -68,7 +68,7 @@ author = u'Lorenz Diener'
# The short X.Y version. # The short X.Y version.
version = u'1.4' version = u'1.4'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = u'1.4.1' release = u'1.4.2'
# 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

@ -6,7 +6,7 @@ extras = {
} }
setup(name='Mastodon.py', setup(name='Mastodon.py',
version='1.4.1', version='1.4.2',
description='Python wrapper for the Mastodon API', description='Python wrapper for the Mastodon API',
packages=['mastodon'], packages=['mastodon'],
install_requires=[ install_requires=[