diff options
-rw-r--r-- | docs/index.rst | 4 | ||||
-rw-r--r-- | mastodon/Mastodon.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/index.rst b/docs/index.rst index 2a64a02..5a1254d 100644 --- a/docs/index.rst +++ b/docs/index.rst | |||
@@ -46,7 +46,7 @@ node running Mastodon by setting `api_base_url` when creating the | |||
46 | api object (or creating an app). | 46 | api object (or creating an app). |
47 | 47 | ||
48 | Mastodon.py aims to implement the complete public Mastodon API. As | 48 | Mastodon.py aims to implement the complete public Mastodon API. As |
49 | of this time, it is feature complete for Mastodon version 2.1.0. | 49 | of this time, it is feature complete for Mastodon version 2.2.0. |
50 | 50 | ||
51 | A note about rate limits | 51 | A note about rate limits |
52 | ------------------------ | 52 | ------------------------ |
@@ -674,7 +674,7 @@ Writing data: Lists | |||
674 | ------------------- | 674 | ------------------- |
675 | These functions allow you to create, maintain and delete lists. | 675 | These functions allow you to create, maintain and delete lists. |
676 | 676 | ||
677 | When creating lists, note that (As of Mastodon 2.1.0), a user can only | 677 | When creating lists, note that a user can only |
678 | have a maximum of 50 lists. | 678 | have a maximum of 50 lists. |
679 | 679 | ||
680 | .. automethod:: Mastodon.list_create | 680 | .. automethod:: Mastodon.list_create |
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 183deab..eeb0b48 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -89,7 +89,7 @@ class Mastodon: | |||
89 | """ | 89 | """ |
90 | __DEFAULT_BASE_URL = 'https://mastodon.social' | 90 | __DEFAULT_BASE_URL = 'https://mastodon.social' |
91 | __DEFAULT_TIMEOUT = 300 | 91 | __DEFAULT_TIMEOUT = 300 |
92 | __SUPPORTED_MASTODON_VERSION = "2.1.2" | 92 | __SUPPORTED_MASTODON_VERSION = "2.2.0" |
93 | 93 | ||
94 | ### | 94 | ### |
95 | # Registering apps | 95 | # Registering apps |