From 574483d87021e8cdd0272e79f9654f1040634153 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Tue, 6 Jun 2017 10:17:58 -0400 Subject: [PATCH] 3.5.0 Release --- HISTORY.rst | 6 ++++++ docs/conf.py | 4 ++-- setup.py | 2 +- twython/__init__.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f8b0b31..4b0f752 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ 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) ++++++++++++++++++ - Added `upload_video` endpoint diff --git a/docs/conf.py b/docs/conf.py index 23044e3..2a22092 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '3.4.0' +version = '3.5.0' # 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 # for a list of supported languages. diff --git a/setup.py b/setup.py index 7b38b99..b31d7af 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.4.0' +__version__ = '3.5.0' packages = [ 'twython', diff --git a/twython/__init__.py b/twython/__init__.py index 1e57cee..7404b28 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -19,7 +19,7 @@ """ __author__ = 'Ryan McGrath ' -__version__ = '3.4.0' +__version__ = '3.5.0' from .api import Twython from .streaming import TwythonStreamer