From c1a6772247a086f6e8b39b4b550a1fb22b67bf83 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Mon, 29 Jan 2018 14:26:05 +0100 Subject: [PATCH] Bump supported version in docs, code to 2.2.0 --- docs/index.rst | 4 ++-- 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 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.1.0. +of this time, it is feature complete for Mastodon version 2.2.0. A note about rate limits ------------------------ @@ -674,7 +674,7 @@ Writing data: Lists ------------------- These functions allow you to create, maintain and delete lists. -When creating lists, note that (As of Mastodon 2.1.0), a user can only +When creating lists, note that a user can only have a maximum of 50 lists. .. 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: """ __DEFAULT_BASE_URL = 'https://mastodon.social' __DEFAULT_TIMEOUT = 300 - __SUPPORTED_MASTODON_VERSION = "2.1.2" + __SUPPORTED_MASTODON_VERSION = "2.2.0" ### # Registering apps