From 17da79f99e24211e8d1f038431ec2da4527e0f2d Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Sat, 21 Feb 2015 11:28:08 -0800 Subject: [PATCH] v3.3.0 --- CHANGELOG.md | 8 ++++++++ tweepy/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a49f4e5..013075d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Version 3.3.0 +------------- + - Loosen our dependency requirements for Requests (>= 2.4.3) + - Fix issue with streams freezing up on Python 3 (Issue #556) + - Add keep_alive() callback to StreamListener when keep alive messages arrive + - Fix issue with stream session headers not being used when restarting connection + - Fix issue with streams getting stuck in a loop when connection dies. (PR #561) + Version 3.2.0 ------------- - Remove deprecated trends methods. diff --git a/tweepy/__init__.py b/tweepy/__init__.py index f702a59..b691e34 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -5,7 +5,7 @@ """ Tweepy Twitter API library """ -__version__ = '3.2.0' +__version__ = '3.3.0' __author__ = 'Joshua Roesslein' __license__ = 'MIT' -- 2.25.1