aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2019-05-08 18:08:11 +0200
committerLorenz Diener <[email protected]>2019-05-08 18:08:11 +0200
commit08d808e2ace017ace45c4043ef9b414333051810 (patch)
treef13c01df5e987601c5f1dbbea4923155ccd2a039
parent6a1b00dc9c30cb1d265d11b9a0278ce72eb839fe (diff)
downloadmastodon.py-08d808e2ace017ace45c4043ef9b414333051810.tar.gz
Bump Mastodon version in some places
-rw-r--r--README.rst2
-rw-r--r--docs/index.rst5
-rw-r--r--mastodon/Mastodon.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 87985c9..053ba16 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
1Mastodon.py 1Mastodon.py
2=========== 2===========
3Python wrapper for the Mastodon ( https://github.com/tootsuite/mastodon/ ) API. 3Python wrapper for the Mastodon ( https://github.com/tootsuite/mastodon/ ) API.
4Feature complete for public API as of Mastodon version 2.8.0 and easy to get started with: 4Feature complete for public API as of Mastodon version 2.8.2 and easy to get started with:
5 5
6.. code-block:: python 6.. code-block:: python
7 7
diff --git a/docs/index.rst b/docs/index.rst
index 637e771..b5b1ea5 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -54,9 +54,10 @@ node running Mastodon by setting `api_base_url` when creating the
54api object (or creating an app). 54api object (or creating an app).
55 55
56Mastodon.py aims to implement the complete public Mastodon API. As 56Mastodon.py aims to implement the complete public Mastodon API. As
57of this time, it is feature complete for Mastodon version 2.8.0. Pleromas 57of this time, it is feature complete for Mastodon version 2.8.2. Pleromas
58Mastodon API layer, while not an official target, should also be basically 58Mastodon API layer, while not an official target, should also be basically
59compatible. 59compatible, and Mastodon.py does make some allowances for behaviour that isn't
60strictly like Mastodons.
60 61
61A note about rate limits 62A note about rate limits
62------------------------ 63------------------------
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 34e6552..fd8df1b 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -154,7 +154,7 @@ class Mastodon:
154 } 154 }
155 __VALID_SCOPES = ['read', 'write', 'follow', 'push'] + __SCOPE_SETS['read'] + __SCOPE_SETS['write'] 155 __VALID_SCOPES = ['read', 'write', 'follow', 'push'] + __SCOPE_SETS['read'] + __SCOPE_SETS['write']
156 156
157 __SUPPORTED_MASTODON_VERSION = "2.4.3" 157 __SUPPORTED_MASTODON_VERSION = "2.8.2"
158 158
159 # Dict versions 159 # Dict versions
160 __DICT_VERSION_APPLICATION = "2.7.2" 160 __DICT_VERSION_APPLICATION = "2.7.2"
Powered by cgit v1.2.3 (git 2.41.0)