diff options
author | Lorenz Diener <[email protected]> | 2016-11-26 00:11:22 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2016-11-26 00:11:22 +0100 |
commit | 8b80eea8625f9f9e3f13fbdbe28c8157d648e727 (patch) | |
tree | d8c1170e8dddce317753c5d2d13f7c4b3685544b | |
parent | 6f923ad1f9ef596a1de61452cc50148875666c09 (diff) | |
download | mastodon.py-8b80eea8625f9f9e3f13fbdbe28c8157d648e727.tar.gz |
Preparing for 1.0.2 release
-rw-r--r-- | CHANGELOG.rst | 8 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e099b66..aa92619 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -1,6 +1,13 @@ | |||
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 avoided as far as at all possible. |
3 | 3 | ||
4 | v1.0.2 | ||
5 | ------ | ||
6 | * Removed functions and documentation for APIs that have been removed | ||
7 | * Documentation is now vastly improved thanks to @lydia / girlsim | ||
8 | * Rate limiting code - Mastodon.py can now attempt to respect rate limits | ||
9 | * Several small bug fixes, consistency fixes, quality-of-life improvements | ||
10 | |||
4 | v.1.0.1 | 11 | v.1.0.1 |
5 | ------- | 12 | ------- |
6 | * Added timeline_*() functions for consistency. timeline() functions as before. | 13 | * Added timeline_*() functions for consistency. timeline() functions as before. |
@@ -9,5 +16,4 @@ v.1.0.1 | |||
9 | 16 | ||
10 | v.1.0.0 | 17 | v.1.0.0 |
11 | ------- | 18 | ------- |
12 | |||
13 | * Initial Release | 19 | * Initial Release |
diff --git a/docs/conf.py b/docs/conf.py index a893c03..1c59aeb 100644 --- a/docs/conf.py +++ b/docs/conf.py | |||
@@ -68,7 +68,7 @@ author = u'Lorenz Diener' | |||
68 | # The short X.Y version. | 68 | # The short X.Y version. |
69 | version = u'1.0' | 69 | version = u'1.0' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'1.0.1' | 71 | release = u'1.0.2' |
72 | 72 | ||
73 | # The language for content autogenerated by Sphinx. Refer to documentation | 73 | # The language for content autogenerated by Sphinx. Refer to documentation |
74 | # for a list of supported languages. | 74 | # for a list of supported languages. |
@@ -1,7 +1,7 @@ | |||
1 | from setuptools import setup, find_packages | 1 | from setuptools import setup, find_packages |
2 | 2 | ||
3 | setup(name='Mastodon.py', | 3 | setup(name='Mastodon.py', |
4 | version='1.0.1', | 4 | version='1.0.2', |
5 | description='Python wrapper for the Mastodon API', | 5 | description='Python wrapper for the Mastodon API', |
6 | packages=['mastodon'], | 6 | packages=['mastodon'], |
7 | install_requires=['requests', 'dateutils'], | 7 | install_requires=['requests', 'dateutils'], |