diff options
author | Lorenz Diener <[email protected]> | 2017-11-21 14:53:32 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-11-21 14:53:32 +0100 |
commit | dc4eec7289cd5898f3d15ea0735b1717b8528c52 (patch) | |
tree | 180aab213a7d55b46ef296367f5f408807a41ecf | |
parent | 7771b27b72601c63f1c90fc4872684cf66a71e4b (diff) | |
download | mastodon.py-dc4eec7289cd5898f3d15ea0735b1717b8528c52.tar.gz |
Version bump
-rw-r--r-- | CHANGELOG.rst | 9 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | docs/index.rst | 2 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3be7ce5..a950db0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst | |||
@@ -1,6 +1,15 @@ | |||
1 | A note on versioning: This librarys major version will grow with the APIs | 1 | A note on versioning: This librarys major version will grow with the APIs |
2 | version number. Breaking changes will be avoided as far as at all possible. | 2 | version number. Breaking changes will be avoided as far as at all possible. |
3 | 3 | ||
4 | v1.1.2 | ||
5 | ------ | ||
6 | * 2.0 id compatibility (thanks codl) | ||
7 | * Media alt-text support (thanks foozmeat) | ||
8 | * Python2 fixes (thanks ragingscholar) | ||
9 | * General code cleanup and small fixes (thanks codl) | ||
10 | * Beginnings of better error handling (thanks Elizafox) | ||
11 | * Various documentation updates | ||
12 | |||
4 | v1.1.1 | 13 | v1.1.1 |
5 | ------ | 14 | ------ |
6 | * Emergency fix to allow logging in to work (thanks codl) | 15 | * Emergency fix to allow logging in to work (thanks codl) |
diff --git a/docs/conf.py b/docs/conf.py index 5d1ac64..fc42a9c 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.1' | 69 | version = u'1.1' |
70 | # The full version, including alpha/beta/rc tags. | 70 | # The full version, including alpha/beta/rc tags. |
71 | release = u'1.1.1' | 71 | release = u'1.1.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. |
diff --git a/docs/index.rst b/docs/index.rst index c74f8f6..14ec49f 100644 --- a/docs/index.rst +++ b/docs/index.rst | |||
@@ -46,7 +46,7 @@ node running Mastodon by setting api_base_url when creating the | |||
46 | api object (or creating an app). | 46 | api object (or creating an app). |
47 | 47 | ||
48 | Mastodon.py aims to implement the complete public Mastodon API. As | 48 | Mastodon.py aims to implement the complete public Mastodon API. As |
49 | of this time, it is feature complete for Mastodon version 2.0. | 49 | of this time, it is feature complete for Mastodon version 2.0.0. |
50 | 50 | ||
51 | A note about rate limits | 51 | A note about rate limits |
52 | ------------------------ | 52 | ------------------------ |
@@ -1,7 +1,7 @@ | |||
1 | from setuptools import setup | 1 | from setuptools import setup |
2 | 2 | ||
3 | setup(name='Mastodon.py', | 3 | setup(name='Mastodon.py', |
4 | version='1.1.1', | 4 | version='1.1.2', |
5 | description='Python wrapper for the Mastodon API', | 5 | description='Python wrapper for the Mastodon API', |
6 | packages=['mastodon'], | 6 | packages=['mastodon'], |
7 | setup_requires=['pytest-runner'], | 7 | setup_requires=['pytest-runner'], |