diff options
author | Lorenz Diener <[email protected]> | 2018-07-30 17:30:46 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2018-07-30 17:30:46 +0200 |
commit | 58c508a11c8ae69e9e19525b84d2db1ca0ab0245 (patch) | |
tree | 0400f8da227722d418106e837772a0c635dda025 | |
parent | de0d5df86152ab5f4a748fecd0d2089e701820cd (diff) | |
download | mastodon.py-58c508a11c8ae69e9e19525b84d2db1ca0ab0245.tar.gz |
Bump supported version
-rw-r--r-- | docs/index.rst | 4 | ||||
-rw-r--r-- | mastodon/Mastodon.py | 2 |
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 | |||
45 | api object (or creating an app). | 45 | api object (or creating an app). |
46 | 46 | ||
47 | Mastodon.py aims to implement the complete public Mastodon API. As | 47 | Mastodon.py aims to implement the complete public Mastodon API. As |
48 | of this time, it is feature complete for Mastodon version 2.4.0. | 48 | of this time, it is feature complete for Mastodon version 2.4.3. Pleromas |
49 | Mastodon API layer, while not an official target, should also be basically | ||
50 | compatible. | ||
49 | 51 | ||
50 | A note about rate limits | 52 | A 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" |