From: Joshua Roesslein Date: Wed, 28 Jan 2015 19:10:16 +0000 (-0800) Subject: Prepare for 3.2.0 release. Update change log and bump version. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=21904d00503435ef1b4b2a4c710fa1d861e62730;p=tweepy.git Prepare for 3.2.0 release. Update change log and bump version. --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 97229e9..a49f4e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ -Version 3.1 ------------ +Version 3.2.0 +------------- + - Remove deprecated trends methods. + - Fix tweepy.debug() to work in Python 3. + - Fixed issue #529 - StreamListener language filter stopped working. + - Add Documentation Page for streaming. + - Add media/upload endpoint. + - Add media_ids parameter to update_status(). + +Version 3.1.0 +------------- - Allow specifying your own ssl certificates for streaming client. - Distribute Python Wheels instead of dumb binaries. - Fix cursor invocation, passing args to underlying method. (https://github.com/tweepy/tweepy/issues/515) diff --git a/tweepy/__init__.py b/tweepy/__init__.py index 4be5a5a..f702a59 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -5,7 +5,7 @@ """ Tweepy Twitter API library """ -__version__ = '3.1.0' +__version__ = '3.2.0' __author__ = 'Joshua Roesslein' __license__ = 'MIT'