diff options
author | Lorenz Diener <[email protected]> | 2019-06-23 12:13:44 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2019-06-23 12:13:44 +0200 |
commit | d3441b98764ea78f3787b29843bbf077aa64db1f (patch) | |
tree | 8e251483548e3a862e7de8a9d787119d6fd69ba4 | |
parent | b31fc75915c75d821f0f548cb81822557948fd22 (diff) | |
download | mastodon.py-d3441b98764ea78f3787b29843bbf077aa64db1f.tar.gz |
Version bump
-rw-r--r-- | CHANGELOG.rst | 4 | ||||
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ab6c48b..f86b57f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -2,6 +2,10 @@ A note on versioning: This librarys major version will grow with the APIs | |||
2 | version number. Breaking changes will be indicated by a change in the minor | 2 | 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.4.5 | ||
6 | ------ | ||
7 | * Small fix to be friendlier to hosted apps | ||
8 | |||
5 | v1.4.4 | 9 | v1.4.4 |
6 | ------ | 10 | ------ |
7 | * Added support for moderation API (Thanks Gargron for the clarifications and dotUser for helping with testing) | 11 | * Added support for moderation API (Thanks Gargron for the clarifications and dotUser for helping with testing) |
diff --git a/docs/conf.py b/docs/conf.py index 56f124e..d957bf3 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. |
60 | project = u'Mastodon.py' | 60 | project = u'Mastodon.py' |
61 | copyright = u'2016-2018, Lorenz Diener' | 61 | copyright = u'2016-2019, Lorenz Diener' |
62 | author = u'Lorenz Diener' | 62 | author = 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. |
69 | version = u'1.4' | 69 | version = u'1.4' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'1.4.4' | 71 | release = u'1.4.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. |
@@ -26,7 +26,7 @@ extras = { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | setup(name='Mastodon.py', | 28 | setup(name='Mastodon.py', |
29 | version='1.4.4', | 29 | version='1.4.5', |
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=[ |