Release 2.1.
authorJoshua Roesslein <jroesslein@gmail.com>
Sun, 16 Jun 2013 19:13:07 +0000 (12:13 -0700)
committerJoshua Roesslein <jroesslein@gmail.com>
Sun, 16 Jun 2013 19:13:07 +0000 (12:13 -0700)
CHANGELOG.md
tweepy/__init__.py

index ae55c74e2d5fd785786539e7f05050cf9b6f0e1f..b9c3151b41c01c4df5413b2ead91e323d7759118 100644 (file)
@@ -1,3 +1,18 @@
+Version 2.1
+-----------
+  - Added get_oembed().
+  - friends() and followers() are back and updated to v1.1.
+  - Fixed report_spam() endpoint.
+  - Added "languages" parameter to streaming filter() method.
+  - Added "timeout" support for API object. Ex: API(timeout=1000).
+  - Python 2.5 no longer supported.
+  - Added compression support. Ex: API(compression=True).
+  - Added on_connect() callback to StreamListener.
+  - Switched API search() to v1.1 endpoint. Some breaking changes.
+  - Drop "page" based cursors and use "ID" based ones instead.
+  - [Compare
+    2.0...master](https://github.com/tweepy/tweepy/compare/2.0...master)
+
 Version 2.0
 -----------
   _Dedicated in memory of Aaron Swartz_
index 24529e7d40983cbb27877c32d782298baea2e24c..4a45b546fe7d4f5201cc5224aab5c084d843c10c 100644 (file)
@@ -5,7 +5,7 @@
 """
 Tweepy Twitter API library
 """
-__version__ = '2.0'
+__version__ = '2.1'
 __author__ = 'Joshua Roesslein'
 __license__ = 'MIT'