aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2020-03-14 19:05:11 +0100
committerLorenz Diener <[email protected]>2020-03-14 19:05:11 +0100
commit02a0f1e8013c2fe3e82f212fb545d8e6e1bb9a2c (patch)
treed63bd5e5e445efe19d07a76e80556c342a34903d
parent82f531e3eed43215aae8af558a5c9699f15e662f (diff)
downloadmastodon.py-02a0f1e8013c2fe3e82f212fb545d8e6e1bb9a2c.tar.gz
Prep release 1.5.1
-rw-r--r--CHANGELOG.rst2
-rw-r--r--docs/conf.py4
-rw-r--r--setup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index ecee084..1661351 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,7 +2,7 @@ A note on versioning: This librarys major version will grow with the APIs
2version number. Breaking changes will be indicated by a change in the minor 2version 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
5v1.5.1 (in progress, unreleased) 5v1.5.1
6-------------------------------- 6--------------------------------
7* 3.1 support 7* 3.1 support
8 * Added `discoverable` parameter to account_update_credentials (Thanks gdunstone) 8 * Added `discoverable` parameter to account_update_credentials (Thanks gdunstone)
diff --git a/docs/conf.py b/docs/conf.py
index 15c27b6..14a3902 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -58,7 +58,7 @@ master_doc = 'index'
58 58
59# General information about the project. 59# General information about the project.
60project = u'Mastodon.py' 60project = u'Mastodon.py'
61copyright = u'2016-2019, Lorenz Diener' 61copyright = u'2016-2020, Lorenz Diener'
62author = u'Lorenz Diener' 62author = u'Lorenz Diener'
63 63
64# The version info for the project you're documenting, acts as replacement for 64# The version info for the project you're documenting, acts as replacement for
@@ -68,7 +68,7 @@ author = u'Lorenz Diener'
68# The short X.Y version. 68# The short X.Y version.
69version = u'1.5' 69version = u'1.5'
70# The full version, including alpha/beta/rc tags. 70# The full version, including alpha/beta/rc tags.
71release = u'1.5.0' 71release = u'1.5.1'
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 4aed898..3e4f559 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ extras = {
26} 26}
27 27
28setup(name='Mastodon.py', 28setup(name='Mastodon.py',
29 version='1.5.0', 29 version='1.5.1',
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=[
Powered by cgit v1.2.3 (git 2.41.0)