aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst23
-rw-r--r--mastodon/Mastodon.py1
2 files changed, 22 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index f0ea44f..3e1e882 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,26 @@
1A note on versioning: This librarys major version will grow with the APIs 1A note on versioning: This librarys major version will grow with the APIs
2version number. Breaking changes will be avoided as far as at all possible. 2version number. Breaking changes will be indicated by a change in the minor
3(or major) version number, and will generally be avoided.
4
5v1.2.0 (Preliminary)
6--------------------
7* BREAKING CHANGE: Renamed streaming functions to be more in line with the rest
8* POTENTIALLY BREAKING CHANGE: Added attribute-style access for returned dicts
9* 2.1.0 compatibility
10 * Added custom_emojis()
11 * Added list(), lists(), list_accounts()
12 * Added list_create(), list_update(), list_delete()
13 * Added list_accounts_add(), list_accounts_delete()
14 * Added account_lists()
15 * Added timeline_list()
16 * Added stream_list()
17* Added automatic id unpacking
18* Added api versioning
19* Added a large amount of tests (MASSIVE thanks to codl)
20* Added asynchronous mode to streaming api (Thanks Kjwon15)
21* Added CallbackStreamListener
22* Improved documentation for the streaming API
23* Verious fixes, clarifications, et cetera (Thanks Dryusdan, codl)
3 24
4v1.1.2 25v1.1.2
5------ 26------
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index c0af05d..4500583 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -59,7 +59,6 @@ def api_version(created_ver, last_changed_ver):
59 return decorate(function, wrapper) 59 return decorate(function, wrapper)
60 return api_min_version_decorator 60 return api_min_version_decorator
61 61
62
63### 62###
64# Dict helper class. 63# Dict helper class.
65# Defined at top level so it can be pickled. 64# Defined at top level so it can be pickled.
Powered by cgit v1.2.3 (git 2.41.0)