Bump Mastodon version in some places

This commit is contained in:
Lorenz Diener 2019-05-08 18:08:11 +02:00
pare 6a1b00dc9c
commit 08d808e2ac
S'han modificat 3 arxius amb 5 adicions i 4 eliminacions

Veure arxiu

@ -1,7 +1,7 @@
Mastodon.py
===========
Python wrapper for the Mastodon ( https://github.com/tootsuite/mastodon/ ) API.
Feature complete for public API as of Mastodon version 2.8.0 and easy to get started with:
Feature complete for public API as of Mastodon version 2.8.2 and easy to get started with:
.. code-block:: python

Veure arxiu

@ -54,9 +54,10 @@ 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.8.0. Pleromas
of this time, it is feature complete for Mastodon version 2.8.2. Pleromas
Mastodon API layer, while not an official target, should also be basically
compatible.
compatible, and Mastodon.py does make some allowances for behaviour that isn't
strictly like Mastodons.
A note about rate limits
------------------------

Veure arxiu

@ -154,7 +154,7 @@ class Mastodon:
}
__VALID_SCOPES = ['read', 'write', 'follow', 'push'] + __SCOPE_SETS['read'] + __SCOPE_SETS['write']
__SUPPORTED_MASTODON_VERSION = "2.4.3"
__SUPPORTED_MASTODON_VERSION = "2.8.2"
# Dict versions
__DICT_VERSION_APPLICATION = "2.7.2"