From: Joshua Roesslein Date: Mon, 1 Dec 2014 19:22:18 +0000 (-0600) Subject: Release 3.1 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f2a29ff1ec924e925591c941fd82b28c74fea987;p=tweepy.git Release 3.1 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 30a9e8d..97229e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +Version 3.1 +----------- + - 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) + - Upgrade to Request 2.4.3 + Version 3.0 ----------- - Added multiple list members operation api methods (add_list_members, remove_list_members). diff --git a/tweepy/__init__.py b/tweepy/__init__.py index a6d3af4..85c4b5b 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -5,7 +5,7 @@ """ Tweepy Twitter API library """ -__version__ = '3.0' +__version__ = '3.1' __author__ = 'Joshua Roesslein' __license__ = 'MIT'