diff options
author | halcy <[email protected]> | 2022-11-06 19:41:17 +0200 |
---|---|---|
committer | halcy <[email protected]> | 2022-11-06 19:41:17 +0200 |
commit | 3bd3961c7f72048c207d4906191d70888e8efc81 (patch) | |
tree | 0c777f8a5ec8d84de1774111850caaf84a0560e9 | |
parent | c061387770c3860cb598c82733f1fc87c9d414cc (diff) | |
download | mastodon.py-3bd3961c7f72048c207d4906191d70888e8efc81.tar.gz |
fix readme, bump version
-rw-r--r-- | CHANGELOG.rst | 3 | ||||
-rw-r--r-- | README.rst | 8 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 3 insertions, 10 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index de47b08..f52f0c3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -3,6 +3,7 @@ version number. Breaking changes will be indicated by a change in the minor | |||
3 | (or major) version number, and will generally be avoided. | 3 | (or major) version number, and will generally be avoided. |
4 | 4 | ||
5 | v1.5.2 | 5 | v1.5.2 |
6 | ------ | ||
6 | * BREAKING CHANGE: Greatly improve how pagination info is stored (arittner) | 7 | * BREAKING CHANGE: Greatly improve how pagination info is stored (arittner) |
7 | * Add "unknown event" handler for streaming (arittner) | 8 | * Add "unknown event" handler for streaming (arittner) |
8 | * Add support for exclude_types in notifications api (MicroCheapFx) | 9 | * Add support for exclude_types in notifications api (MicroCheapFx) |
@@ -20,7 +21,7 @@ v1.5.2 | |||
20 | * Fix an issue related to hometowns version string | 21 | * Fix an issue related to hometowns version string |
21 | 22 | ||
22 | v1.5.1 | 23 | v1.5.1 |
23 | -------------------------------- | 24 | ------ |
24 | * 3.1 support | 25 | * 3.1 support |
25 | * Added `discoverable` parameter to account_update_credentials (Thanks gdunstone) | 26 | * Added `discoverable` parameter to account_update_credentials (Thanks gdunstone) |
26 | * Added new notification type "follow_request" | 27 | * Added new notification type "follow_request" |
@@ -55,14 +55,6 @@ be testing specifically for python 2.7 any longer. | |||
55 | Full documentation and basic usage examples can be found | 55 | Full documentation and basic usage examples can be found |
56 | at http://mastodonpy.readthedocs.io/en/stable/ . | 56 | at http://mastodonpy.readthedocs.io/en/stable/ . |
57 | 57 | ||
58 | Maintenance | ||
59 | ----------- | ||
60 | As you might have noticed, I have not done any maint work on this project in a while. | ||
61 | I am currently extremely busy with my actual paid work, and will not be able to work | ||
62 | on Mastodon.py until I hand in my dissertation, i.e. there will be no new releases or | ||
63 | code from me for at least the rest of this year, maybe part of next. If you would like | ||
64 | to temporarily take over bug fixing / test writing / new method implementing, hit me up. | ||
65 | |||
66 | Acknowledgements | 58 | Acknowledgements |
67 | ---------------- | 59 | ---------------- |
68 | Mastodon.py contains work by a large amount of contributors, many of which have | 60 | Mastodon.py contains work by a large amount of contributors, many of which have |
@@ -26,7 +26,7 @@ extras = { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | setup(name='Mastodon.py', | 28 | setup(name='Mastodon.py', |
29 | version='1.5.1', | 29 | version='1.5.2', |
30 | description='Python wrapper for the Mastodon API', | 30 | description='Python wrapper for the Mastodon API', |
31 | packages=['mastodon'], | 31 | packages=['mastodon'], |
32 | install_requires=[ | 32 | install_requires=[ |