Bump supported version

This commit is contained in:
Lorenz Diener 2018-07-30 17:30:46 +02:00
parent de0d5df861
commit 58c508a11c
2 changed files with 4 additions and 2 deletions

View File

@ -45,7 +45,9 @@ 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.4.0.
of this time, it is feature complete for Mastodon version 2.4.3. Pleromas
Mastodon API layer, while not an official target, should also be basically
compatible.
A note about rate limits
------------------------

View File

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