3.4.0 release, update version and history

This commit is contained in:
Mike Helmick 2016-04-30 05:22:26 -04:00
parent 6cd13d772e
commit 3f6700373f
No known key found for this signature in database
GPG key ID: 29E8ABD2DD467ABE
4 changed files with 10 additions and 4 deletions

View file

@ -3,6 +3,12 @@
History 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) 3.3.0 (2015-18-07)
++++++++++++++++++ ++++++++++++++++++
- Added support for muting users - Added support for muting users

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.3.0' version = '3.4.0'
# The full version, including alpha/beta/rc tags. # 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 # 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.3.0' __version__ = '3.4.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.3.0' __version__ = '3.4.0'
from .api import Twython from .api import Twython
from .streaming import TwythonStreamer from .streaming import TwythonStreamer