diff options
author | Lorenz Diener <[email protected]> | 2019-05-11 12:59:58 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2019-05-11 12:59:58 +0200 |
commit | 03c4ca8a5b31df6cb87da5e80adb7f4671055405 (patch) | |
tree | cc154e9f4a84183e901eca7ceafaf7942f55960b | |
parent | b4c26febc8de9120ab1240af87848be826ef0fed (diff) | |
download | mastodon.py-03c4ca8a5b31df6cb87da5e80adb7f4671055405.tar.gz |
Bump version
-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 59c6bfe..b382749 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.2 | ||
6 | ------ | ||
7 | * Fixed date parsing in hashtag dicts. | ||
8 | |||
5 | v1.4.1 | 9 | v1.4.1 |
6 | ------ | 10 | ------ |
7 | * Fixed search not working on Mastodon versions before 2.8.0. search now dynamically selects search_v1 or search_v2 and adjusts valid parameters depending on the detected Mastodon version. | 11 | * Fixed search not working on Mastodon versions before 2.8.0. search now dynamically selects search_v1 or search_v2 and adjusts valid parameters depending on the detected Mastodon version. |
diff --git a/docs/conf.py b/docs/conf.py index fa34419..2d9875e 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.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.1' | 71 | release = u'1.4.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. |
@@ -6,7 +6,7 @@ extras = { | |||
6 | } | 6 | } |
7 | 7 | ||
8 | setup(name='Mastodon.py', | 8 | setup(name='Mastodon.py', |
9 | version='1.4.1', | 9 | version='1.4.2', |
10 | description='Python wrapper for the Mastodon API', | 10 | description='Python wrapper for the Mastodon API', |
11 | packages=['mastodon'], | 11 | packages=['mastodon'], |
12 | install_requires=[ | 12 | install_requires=[ |