diff options
author | Lorenz Diener <[email protected]> | 2017-12-21 11:07:56 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-12-21 11:07:56 +0100 |
commit | 7fb37a373a1ab256219f524085c8241bd2925054 (patch) | |
tree | 5be6b42a32e28673a7fdf32753a3b67b2879b170 | |
parent | 18543648a6f6c75a3d20415cdfa51aeca52f752f (diff) | |
download | mastodon.py-7fb37a373a1ab256219f524085c8241bd2925054.tar.gz |
Prepare release
-rw-r--r-- | CHANGELOG.rst | 5 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ee3db52..f99a2cb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -2,6 +2,11 @@ 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.2.1 | ||
6 | ------ | ||
7 | * Internal stability changes and fixes to streaming code | ||
8 | * Fixed async parameter being ignored in two streaming methods | ||
9 | |||
5 | v1.2.0 | 10 | v1.2.0 |
6 | ------ | 11 | ------ |
7 | * BREAKING CHANGE: Renamed streaming functions to be more in line with the rest | 12 | * BREAKING CHANGE: Renamed streaming functions to be more in line with the rest |
diff --git a/docs/conf.py b/docs/conf.py index aa645c8..d4b0e26 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.2' | 69 | version = u'1.2' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'1.2.0' | 71 | release = u'1.2.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. |
@@ -6,7 +6,7 @@ extras = { | |||
6 | } | 6 | } |
7 | 7 | ||
8 | setup(name='Mastodon.py', | 8 | setup(name='Mastodon.py', |
9 | version='1.2.0', | 9 | version='1.2.1', |
10 | description='Python wrapper for the Mastodon API', | 10 | description='Python wrapper for the Mastodon API', |
11 | packages=['mastodon'], | 11 | packages=['mastodon'], |
12 | setup_requires=['pytest-runner'], | 12 | setup_requires=['pytest-runner'], |