From 0009325544679777177f19a7b0dc42cc65c0908d Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Sun, 30 Nov 2014 15:11:12 -0600 Subject: [PATCH] Release 3.0.0 --- CHANGELOG.md | 14 ++++++++++++++ tweepy/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 120b660..30a9e8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +Version 3.0 +----------- + - Added multiple list members operation api methods (add_list_members, remove_list_members). + - Added sitestream endpoint. + - Switch to using Requests instead of httplib. + - Fully removed support for non-secure HTTP. + - Proxy support. + - Add API method for /statuses/lookup.json + - Add missing 'count' parameter to followers_ids + - Added allowed_param to update_profile_image + - Comparison between Status objects + - Extend on_data method by including a conditional to process warning messages and add the definition of the method to manage those warning messages + - Better Python 3 support. + Version 2.2 ----------- - Added update_profile_banner endpoint. diff --git a/tweepy/__init__.py b/tweepy/__init__.py index bf097a9..a6d3af4 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -5,7 +5,7 @@ """ Tweepy Twitter API library """ -__version__ = '2.3' +__version__ = '3.0' __author__ = 'Joshua Roesslein' __license__ = 'MIT' -- 2.25.1