aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2018-01-29 14:26:05 +0100
committerLorenz Diener <[email protected]>2018-01-29 14:26:05 +0100
commitc1a6772247a086f6e8b39b4b550a1fb22b67bf83 (patch)
tree21f2519f2c9b0d01cf4b05eaac8bcb8132d68ab9
parentbe014bb88a4b1eba892dc6b3d62453877066e05e (diff)
downloadmastodon.py-c1a6772247a086f6e8b39b4b550a1fb22b67bf83.tar.gz
Bump supported version in docs, code to 2.2.0
-rw-r--r--docs/index.rst4
-rw-r--r--mastodon/Mastodon.py2
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
46api object (or creating an app). 46api object (or creating an app).
47 47
48Mastodon.py aims to implement the complete public Mastodon API. As 48Mastodon.py aims to implement the complete public Mastodon API. As
49of this time, it is feature complete for Mastodon version 2.1.0. 49of this time, it is feature complete for Mastodon version 2.2.0.
50 50
51A note about rate limits 51A note about rate limits
52------------------------ 52------------------------
@@ -674,7 +674,7 @@ Writing data: Lists
674------------------- 674-------------------
675These functions allow you to create, maintain and delete lists. 675These functions allow you to create, maintain and delete lists.
676 676
677When creating lists, note that (As of Mastodon 2.1.0), a user can only 677When creating lists, note that a user can only
678have a maximum of 50 lists. 678have 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
Powered by cgit v1.2.3 (git 2.41.0)