Version 3.7.0

This commit is contained in:
Mike Helmick 2018-05-07 12:52:54 -04:00
parent 62e45e9637
commit c9e8a46200
5 changed files with 13 additions and 4 deletions

View file

@ -3,6 +3,15 @@
History
-------
3.7.0 (2018-07-05)
++++++++++++++++++
- Fixes for cursoring API endpoints
- Improve `html_for_tweet()` parsing
- Documentation cleanup
- Documentation for cursor's `return_pages` keyword argument
- Update links to Twitter API in documentation
- Added `create_metadata` endpoint
- Raise error for when cursor is not provided a callable
3.6.0 (2017-23-08)
++++++++++++++++++

View file

@ -50,9 +50,9 @@ copyright = u'2013, Ryan McGrath'
# built documents.
#
# The short X.Y version.
version = '3.6.0'
version = '3.7.0'
# The full version, including alpha/beta/rc tags.
release = '3.6.0'
release = '3.7.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -9,7 +9,7 @@ except ImportError:
from distutils.core import setup
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.6.0'
__version__ = '3.7.0'
packages = [
'twython',

View file

@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net
"""
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.6.0'
__version__ = '3.7.0'
from .api import Twython
from .streaming import TwythonStreamer