diff options
author | Lorenz Diener <[email protected]> | 2017-12-14 15:09:54 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-12-14 15:09:54 +0100 |
commit | e97bb44c86179c0ed1abc562cd4e61d2aedb42e5 (patch) | |
tree | 509cdbc2a9c880ea6a9f5565010336d2c7294b0f | |
parent | 997a0f064765c6fd97e047c3fd6bac4ee7c13489 (diff) | |
download | mastodon.py-e97bb44c86179c0ed1abc562cd4e61d2aedb42e5.tar.gz |
Update changelog (preliminary)
-rw-r--r-- | CHANGELOG.rst | 23 | ||||
-rw-r--r-- | mastodon/Mastodon.py | 1 |
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 @@ | |||
1 | A note on versioning: This librarys major version will grow with the APIs | 1 | A note on versioning: This librarys major version will grow with the APIs |
2 | version number. Breaking changes will be avoided as far as at all possible. | 2 | version number. Breaking changes will be indicated by a change in the minor |
3 | (or major) version number, and will generally be avoided. | ||
4 | |||
5 | v1.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 | ||
4 | v1.1.2 | 25 | v1.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. |