From 3f6700373f9b4bf6d0734912adf6386af4a22ff2 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Sat, 30 Apr 2016 05:22:26 -0400 Subject: [PATCH] 3.4.0 release, update version and history --- 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 05f1f719..f8b0b314 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +3.4.0 (2016-30-04) +++++++++++++++++++ +- Added `upload_video` endpoint +- Fix quoted status checks in `html_for_tweet` +- Fix `html_for_tweet` method response when hashtag/mention is a substring of another + 3.3.0 (2015-18-07) ++++++++++++++++++ - Added support for muting users diff --git a/docs/conf.py b/docs/conf.py index 480a355c..23044e32 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '3.3.0' +version = '3.4.0' # The full version, including alpha/beta/rc tags. -release = '3.3.0' +release = '3.4.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 6d05bafe..7b38b99e 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.3.0' +__version__ = '3.4.0' packages = [ 'twython', diff --git a/twython/__init__.py b/twython/__init__.py index 3525f3c7..1e57ceef 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -19,7 +19,7 @@ """ __author__ = 'Ryan McGrath ' -__version__ = '3.3.0' +__version__ = '3.4.0' from .api import Twython from .streaming import TwythonStreamer