3.5.0 Release

This commit is contained in:
Mike Helmick 2017-06-06 10:17:58 -04:00
parent 866fb0202a
commit 574483d870
4 changed files with 10 additions and 4 deletions

View file

@ -3,6 +3,12 @@
History History
------- -------
3.5.0 (2017-06-06)
++++++++++++++++++
- Added support for "symbols" in `Twython.html_for_tweet()`
- Added support for extended tweets in `Twython.html_for_tweet()`
- You can now check progress of video uploads to Twitter when using `Twython.upload_video()`
3.4.0 (2016-30-04) 3.4.0 (2016-30-04)
++++++++++++++++++ ++++++++++++++++++
- Added `upload_video` endpoint - Added `upload_video` endpoint

View file

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

View file

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

View file

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