diff options
author | Lorenz Diener <[email protected]> | 2017-03-15 11:17:51 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-03-15 11:17:51 +0100 |
commit | 857968f34e19191e0ae5771b3a62e450a180ad0e (patch) | |
tree | cffb2a4de8d94da2a70332f6c153ba92aa6b694e | |
parent | 6a65a3143c21fa90cd242facd63f24debc07f832 (diff) | |
download | mastodon.py-857968f34e19191e0ae5771b3a62e450a180ad0e.tar.gz |
Preparing maint release
-rw-r--r-- | CHANGELOG.rst | 4 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 77315de..344616f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -1,6 +1,10 @@ | |||
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.5 | ||
5 | ------ | ||
6 | * Fixed previous fix (Thank you, @[email protected]) | ||
7 | |||
4 | v1.0.4 | 8 | v1.0.4 |
5 | ------ | 9 | ------ |
6 | * Fixed an app creation bug (Thank you, @[email protected]) | 10 | * Fixed an app creation bug (Thank you, @[email protected]) |
diff --git a/docs/conf.py b/docs/conf.py index de28077..e372027 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.4' | 71 | release = u'1.0.5' |
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.4', | 4 | version='1.0.5', |
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'], |