Skip to content

Commit e094ae7

Browse files
committed
Release 2.1.
1 parent fdc0f70 commit e094ae7

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Version 2.1
2+
-----------
3+
- Added get_oembed().
4+
- friends() and followers() are back and updated to v1.1.
5+
- Fixed report_spam() endpoint.
6+
- Added "languages" parameter to streaming filter() method.
7+
- Added "timeout" support for API object. Ex: API(timeout=1000).
8+
- Python 2.5 no longer supported.
9+
- Added compression support. Ex: API(compression=True).
10+
- Added on_connect() callback to StreamListener.
11+
- Switched API search() to v1.1 endpoint. Some breaking changes.
12+
- Drop "page" based cursors and use "ID" based ones instead.
13+
- [Compare
14+
2.0...master](https://github.com/tweepy/tweepy/compare/2.0...master)
15+
116
Version 2.0
217
-----------
318
_Dedicated in memory of Aaron Swartz_

tweepy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
Tweepy Twitter API library
77
"""
8-
__version__ = '2.0'
8+
__version__ = '2.1'
99
__author__ = 'Joshua Roesslein'
1010
__license__ = 'MIT'
1111

0 commit comments

Comments
 (0)