Prepare release 1.2.2

This commit is contained in:
Lorenz Diener 2018-01-29 15:10:28 +01:00
pare c1a6772247
commit 70de1eecb3
S'han modificat 3 arxius amb 11 adicions i 2 eliminacions

Veure arxiu

@ -2,6 +2,15 @@ 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
(or major) version number, and will generally be avoided.
v1.2.2
------
* Several small bugfixes (thanks codl)
* Mastodon v2.1.2 compatibility
* Added instance_activity()
* Added instance_peers()
* Fixed StreamListener breaking when listening to more than one stream (again thanks, codl)
* POTENTIALLY BREAKING CHANGE: Remvoved handle_line, which should have been an internal helper to begin with
v1.2.1
------
* Internal stability changes and fixes to streaming code

Veure arxiu

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

Veure arxiu

@ -6,7 +6,7 @@ extras = {
}
setup(name='Mastodon.py',
version='1.2.1',
version='1.2.2',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
setup_requires=['pytest-runner'],