aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-04-05 14:03:28 +0200
committerLorenz Diener <[email protected]>2017-04-05 14:03:28 +0200
commit853ae97dccc91988874ae229e9977c8f41a02e44 (patch)
tree64707127d40ac88719dbea04f9797ebd2f1eba82
parentff627cde44c87f8339d23de50e03bb4f484bfb72 (diff)
downloadmastodon.py-853ae97dccc91988874ae229e9977c8f41a02e44.tar.gz
Preparing release
-rw-r--r--CHANGELOG.rst11
-rw-r--r--docs/conf.py2
-rw-r--r--setup.py2
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 344616f..e171629 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,15 @@
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 avoided as far as at all possible.
3 3
4v1.0.6
5------
6 * Fixed several bugs (Thanks to Psycojoker, wjt and wxcafe)
7 * Added support for spoiler text (Thanks to Erin Congden)
8 * Added support for mute functionality (Thanks to Erin Congden)
9 * Added support for getting favourites (Thanks to Erin Congden)
10 * Added support for follow requests (Thanks to Erin Congden, again)
11 * Added MANIFEST.in to allow for conda packaging (Thanks, pmlandwehr)
12
4v1.0.5 13v1.0.5
5------ 14------
6 * Fixed previous fix (Thank you, @[email protected]) 15 * Fixed previous fix (Thank you, @[email protected])
@@ -11,7 +20,7 @@ v1.0.4
11 20
12v1.0.3 21v1.0.3
13------ 22------
14 * Added support for toot privacy. 23 * Added support for toot privacy (thanks fpietsche)
15 24
16v1.0.2 25v1.0.2
17------ 26------
diff --git a/docs/conf.py b/docs/conf.py
index e372027..5522a76 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.
69version = u'1.0' 69version = u'1.0'
70# The full version, including alpha/beta/rc tags. 70# The full version, including alpha/beta/rc tags.
71release = u'1.0.5' 71release = u'1.0.6'
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.
diff --git a/setup.py b/setup.py
index e9f79d3..a9e2bfc 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
1from setuptools import setup, find_packages 1from setuptools import setup, find_packages
2 2
3setup(name='Mastodon.py', 3setup(name='Mastodon.py',
4 version='1.0.5', 4 version='1.0.6',
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'],
Powered by cgit v1.2.3 (git 2.41.0)