aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/index.rst4
-rw-r--r--mastodon/Mastodon.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 3921356..e057e7f 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -45,7 +45,9 @@ node running Mastodon by setting `api_base_url` when creating the
45api object (or creating an app). 45api object (or creating an app).
46 46
47Mastodon.py aims to implement the complete public Mastodon API. As 47Mastodon.py aims to implement the complete public Mastodon API. As
48of this time, it is feature complete for Mastodon version 2.4.0. 48of this time, it is feature complete for Mastodon version 2.4.3. Pleromas
49Mastodon API layer, while not an official target, should also be basically
50compatible.
49 51
50A note about rate limits 52A note about rate limits
51------------------------ 53------------------------
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 0020710..bb7ef31 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -150,7 +150,7 @@ class Mastodon:
150 } 150 }
151 __VALID_SCOPES = ['read', 'write', 'follow', 'push'] + __SCOPE_SETS['read'] + __SCOPE_SETS['write'] 151 __VALID_SCOPES = ['read', 'write', 'follow', 'push'] + __SCOPE_SETS['read'] + __SCOPE_SETS['write']
152 152
153 __SUPPORTED_MASTODON_VERSION = "2.4.0" 153 __SUPPORTED_MASTODON_VERSION = "2.4.3"
154 154
155 # Dict versions 155 # Dict versions
156 __DICT_VERSION_APPLICATION = "1.0.0" 156 __DICT_VERSION_APPLICATION = "1.0.0"
Powered by cgit v1.2.3 (git 2.41.0)